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,
|
2017-03-15 18:51:46 +03:00
|
|
|
"lib": [
|
2017-10-12 00:01:37 +03:00
|
|
|
"es2015",
|
|
|
|
"es2016",
|
|
|
|
"es2017",
|
|
|
|
"dom"
|
2016-09-08 13:19:33 +03:00
|
|
|
],
|
2017-10-12 00:01:37 +03:00
|
|
|
"jsx": "react",
|
2017-05-08 11:24:25 +03:00
|
|
|
"types": [
|
|
|
|
"webpack",
|
2017-10-12 00:01:37 +03:00
|
|
|
"webpack-env",
|
|
|
|
"jest"
|
2017-05-08 11:24:25 +03:00
|
|
|
]
|
2016-09-08 13:19:33 +03:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"exclude": [
|
2016-08-28 21:46:10 +03:00
|
|
|
"node_modules",
|
2017-10-12 00:01:37 +03:00
|
|
|
".tmp",
|
2017-11-19 13:51:59 +03:00
|
|
|
"lib",
|
2018-02-17 22:27:15 +03:00
|
|
|
"e2e/**"
|
2017-10-12 00:01:37 +03:00
|
|
|
],
|
|
|
|
"include": [
|
2020-01-10 15:29:09 +03:00
|
|
|
"cli/index.ts",
|
2017-10-12 00:01:37 +03:00
|
|
|
"./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
|
|
|
}
|