2017-05-21 23:16:24 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-04-16 13:49:17 +00:00
|
|
|
"outDir": "./dist/",
|
2022-04-09 10:10:03 +00:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"jsxImportSource": "preact",
|
2017-05-21 23:16:24 +00:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedLocals" : true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
2022-04-09 10:10:03 +00:00
|
|
|
"target": "esnext",
|
2017-05-21 23:16:24 +00:00
|
|
|
"module": "commonJS",
|
|
|
|
"baseUrl": ".",
|
2022-04-09 10:10:03 +00:00
|
|
|
"types": ["preact", "node"],
|
2017-05-21 23:16:24 +00:00
|
|
|
"paths": {
|
|
|
|
"*": ["./typings/*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"exclude": [
|
2022-11-28 05:04:58 +00:00
|
|
|
"node_modules",
|
|
|
|
"dist"
|
2017-05-21 23:16:24 +00:00
|
|
|
]
|
|
|
|
}
|