firefish/src/client/app/tsconfig.json
syuilo b1b02d0e32
[Client] Enable code splitting
And some optimizations
2018-11-12 04:09:02 +09:00

25 lines
535 B
JSON

{
"compilerOptions": {
"allowJs": true,
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"declaration": false,
"sourceMap": false,
"target": "es2017",
"module": "esnext",
"removeComments": false,
"noLib": false,
"strict": true,
"strictNullChecks": false,
"experimentalDecorators": true
},
"compileOnSave": false,
"include": [
"./**/*.ts"
]
}