2016-05-25 18:34:31 +03:00
|
|
|
{
|
2016-09-08 13:19:33 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"experimentalDecorators": true,
|
2017-10-12 00:01:37 +03:00
|
|
|
"moduleResolution": "node",
|
2016-09-08 13:19:33 +03:00
|
|
|
"target": "es5",
|
|
|
|
"noImplicitAny": false,
|
2017-10-12 00:01:37 +03:00
|
|
|
"noUnusedParameters": true,
|
2018-07-17 12:15:22 +03:00
|
|
|
"noUnusedLocals": true,
|
2017-10-12 00:01:37 +03:00
|
|
|
"strictNullChecks": true,
|
2016-09-08 13:19:33 +03:00
|
|
|
"sourceMap": true,
|
2018-05-16 12:44:36 +03:00
|
|
|
"declaration": true,
|
2018-03-22 19:03:20 +03:00
|
|
|
"noEmitHelpers": true,
|
|
|
|
"importHelpers": true,
|
2017-10-12 00:01:37 +03:00
|
|
|
"outDir": "lib",
|
2016-09-08 13:19:33 +03:00
|
|
|
"pretty": true,
|
2022-01-05 18:11:05 +03:00
|
|
|
"lib": ["es2015", "es2016", "es2017", "dom", "WebWorker.ImportScripts"],
|
2017-10-12 00:01:37 +03:00
|
|
|
"jsx": "react",
|
2022-01-05 18:11:05 +03:00
|
|
|
"types": ["webpack", "webpack-env", "jest"]
|
2016-09-08 13:19:33 +03:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
2022-01-05 18:11:05 +03:00
|
|
|
"exclude": ["node_modules", ".tmp", "lib", "e2e/**"],
|
2017-10-12 00:01:37 +03:00
|
|
|
"include": [
|
|
|
|
"./custom.d.ts",
|
2017-11-20 13:44:01 +03:00
|
|
|
"./demo/playground/hmr-playground.tsx",
|
2018-05-16 13:08:27 +03:00
|
|
|
"./src/**/*.ts?",
|
2020-03-17 12:52:33 +03:00
|
|
|
"demo/*.tsx",
|
|
|
|
"src/empty.js"
|
2018-03-17 16:11:52 +03:00
|
|
|
]
|
2016-05-25 18:34:31 +03:00
|
|
|
}
|