2020-10-17 23:53:33 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-05-28 17:52:48 +00:00
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "h",
|
|
|
|
"jsxFragmentFactory": "Fragment",
|
|
|
|
"module": "esnext",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"target": "es6",
|
|
|
|
"lib": ["DOM", "ES6"],
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"node_modules/*",
|
|
|
|
"types/*"
|
|
|
|
],
|
|
|
|
"js/*": [
|
|
|
|
"js/*"
|
|
|
|
],
|
|
|
|
"json/*": [
|
|
|
|
"json/*"
|
|
|
|
],
|
2022-05-10 13:52:06 +00:00
|
|
|
"test/*": [
|
2022-05-28 17:52:48 +00:00
|
|
|
"test/*"
|
|
|
|
]
|
|
|
|
}
|
2020-10-17 23:53:33 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2021-04-21 00:42:32 +00:00
|
|
|
"js/**/*",
|
|
|
|
"test/**/*",
|
2022-06-03 22:30:39 +00:00
|
|
|
"types/**/*",
|
2021-06-14 00:06:16 +00:00
|
|
|
"*.config.js"
|
2020-10-17 23:53:33 +00:00
|
|
|
]
|
2021-02-22 02:38:21 +00:00
|
|
|
}
|