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,
|
2019-12-18 19:24:14 +00:00
|
|
|
"baseUrl": "./",
|
|
|
|
"resolveJsonModule": true
|
2018-02-24 19:08:02 +00:00
|
|
|
},
|
2019-07-23 21:10:34 +00:00
|
|
|
"exclude": [
|
|
|
|
"assets",
|
|
|
|
"build",
|
|
|
|
"node_modules",
|
|
|
|
"cypress",
|
2019-10-24 20:57:25 +00:00
|
|
|
"coverage",
|
2019-10-09 16:48:18 +00:00
|
|
|
"jest.config.js",
|
2019-10-08 22:39:33 +00:00
|
|
|
"webpack.tsconfig.json",
|
2020-02-20 17:58:56 +00:00
|
|
|
"webpack.*.ts",
|
2020-01-15 17:06:44 +00:00
|
|
|
"src/**/*.test.ts",
|
|
|
|
"src/**/*.test.tsx",
|
2019-10-18 18:02:25 +00:00
|
|
|
"src/**/mocks.ts",
|
|
|
|
"coverage"
|
2020-02-14 17:59:05 +00:00
|
|
|
],
|
2020-02-20 17:58:56 +00:00
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"global.d.ts"
|
|
|
|
]
|
2018-02-20 00:04:38 +00:00
|
|
|
}
|