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": {
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"noFallthroughCasesInSwitch": true,
"suppressImplicitAnyIndexErrors": true,
"newLine": "lf",
"module": "commonjs",
/* Basic options */
"target": "es5",
"jsx": "react",
"allowJs": false
"module": "es6",
"jsx": "preserve",
"sourceMap": true,
"removeComments": false,
/* Strict type-checking */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": false,
"noImplicitThis": true,
"alwaysStrict": true,
/* Additional checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
}
}