2019-09-08 10:41:06 -08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"checkJs": false,
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"jsx": "react",
|
|
|
|
|
"lib": ["dom", "es2017"],
|
2019-09-29 20:34:30 -08:00
|
|
|
"module": "commonjs",
|
2019-09-08 10:41:06 -08:00
|
|
|
"moduleResolution": "node",
|
2019-09-30 21:50:22 -08:00
|
|
|
"outDir": "./target/",
|
2019-09-08 10:41:06 -08:00
|
|
|
"preserveConstEnums": true,
|
|
|
|
|
"removeComments": false,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"target": "es6"
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
2019-09-29 20:34:30 -08:00
|
|
|
"./app/"
|
2019-09-08 10:41:06 -08:00
|
|
|
],
|
|
|
|
|
"exclude": ["node_modules", "**/node_modules/*", "bin/*", "renderer/*"]
|
|
|
|
|
}
|