typescript: Set appropriate compiler options.

* Make type-checking stricter.
* Use more modern features.
This commit is contained in:
Thomas Ip 2019-02-08 18:51:32 +08:00 committed by Tim Abbott
parent 4f628fd945
commit da6fb98d21
1 changed files with 21 additions and 14 deletions

View File

@ -1,16 +1,23 @@
{ {
"compilerOptions": { "compilerOptions": {
"sourceMap": true, /* Basic options */
"emitDecoratorMetadata": true, "target": "es5",
"experimentalDecorators": true, "module": "es6",
"removeComments": false, "jsx": "preserve",
"noImplicitAny": false, "sourceMap": true,
"noFallthroughCasesInSwitch": true, "removeComments": false,
"suppressImplicitAnyIndexErrors": true,
"newLine": "lf", /* Strict type-checking */
"module": "commonjs", "strict": true,
"target": "es5", "noImplicitAny": true,
"jsx": "react", "strictNullChecks": false,
"allowJs": false "noImplicitThis": true,
} "alwaysStrict": true,
/* Additional checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
}
} }