2023-03-08 20:29:13 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-08-08 15:35:06 +00:00
|
|
|
"baseUrl": "./src",
|
2023-07-20 15:45:54 +00:00
|
|
|
"paths": {
|
2023-08-08 15:35:06 +00:00
|
|
|
"src/*": ["./*"],
|
2023-07-20 15:45:54 +00:00
|
|
|
},
|
2023-03-23 20:59:59 +00:00
|
|
|
"outDir": "./dist",
|
2023-03-16 21:27:09 +00:00
|
|
|
"noImplicitAny": true,
|
2023-08-08 15:35:06 +00:00
|
|
|
"target": "es6",
|
2023-08-11 10:09:10 +00:00
|
|
|
"jsx": "react-jsx",
|
2023-03-08 20:29:13 +00:00
|
|
|
"allowJs": true,
|
2023-03-16 21:27:09 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-08-08 15:35:06 +00:00
|
|
|
"declaration": true,
|
2023-07-20 15:45:54 +00:00
|
|
|
"strict": true,
|
2023-08-08 15:35:06 +00:00
|
|
|
"module": "es6",
|
|
|
|
"moduleResolution": "node",
|
2023-08-17 00:04:05 +00:00
|
|
|
"skipLibCheck": true,
|
2023-03-23 20:59:59 +00:00
|
|
|
},
|
2023-08-17 00:04:05 +00:00
|
|
|
// "exclude": ["src/interaction/reducers/*"],
|
2023-07-20 15:45:54 +00:00
|
|
|
"include": [
|
2023-08-08 15:35:06 +00:00
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
2023-08-05 08:14:14 +00:00
|
|
|
"src/global.d.ts"
|
2023-07-20 15:45:54 +00:00
|
|
|
],
|
2023-03-08 20:29:13 +00:00
|
|
|
}
|