2018-02-20 00:04:38 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-07-31 20:34:59 +00:00
|
|
|
"target": "es2017",
|
2019-07-27 00:21:52 +00:00
|
|
|
"module": "esNext",
|
2018-02-20 00:04:38 +00:00
|
|
|
"moduleResolution": "node",
|
2019-09-06 18:39:55 +00:00
|
|
|
"lib": ["es2017", "es2018", "esnext", "dom"],
|
2018-02-20 00:04:38 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"isolatedModules": false,
|
|
|
|
"jsx": "react",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitUseStrict": false,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"noLib": false,
|
|
|
|
"noEmitHelpers": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": false,
|
|
|
|
"sourceMap": true,
|
2018-09-27 17:46:48 +00:00
|
|
|
"esModuleInterop": true,
|
2018-08-17 21:54:14 +00:00
|
|
|
"baseUrl": "./"
|
2018-02-24 19:08:02 +00:00
|
|
|
},
|
2019-07-23 21:10:34 +00:00
|
|
|
"exclude": [
|
|
|
|
"assets",
|
|
|
|
"build",
|
|
|
|
"node_modules",
|
|
|
|
"cypress",
|
|
|
|
"webpack.tsconfig.json"
|
|
|
|
]
|
2018-02-20 00:04:38 +00:00
|
|
|
}
|