2020-08-25 23:36:04 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es7"
|
|
|
|
],
|
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"outDir": "./dist/",
|
2024-03-28 02:33:51 +00:00
|
|
|
"rootDir": "./src/",
|
2020-08-25 23:36:04 +00:00
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
2022-11-10 12:40:17 +00:00
|
|
|
"target": "es6"
|
2020-08-25 23:36:04 +00:00
|
|
|
},
|
2022-11-10 12:40:17 +00:00
|
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
2020-08-25 23:36:04 +00:00
|
|
|
}
|