Prime tsconfig to turn on strict mode one rule at a time
This commit is contained in:
parent
53e997beb0
commit
029c9bec6b
1 changed files with 8 additions and 1 deletions
|
@ -2,7 +2,14 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"baseUrl": "app/",
|
"baseUrl": "app/",
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"strict": true,
|
"alwaysStrict": false,
|
||||||
|
"strictNullChecks": false,
|
||||||
|
"strictBindCallApply": false,
|
||||||
|
"strictFunctionTypes": false,
|
||||||
|
"strictPropertyInitialization": false,
|
||||||
|
"noImplicitAny": true,
|
||||||
|
"noImplicitThis": false,
|
||||||
|
"useUnknownInCatchVariables": false,
|
||||||
"module": "es6",
|
"module": "es6",
|
||||||
"target": "es5",
|
"target": "es5",
|
||||||
"jsx": "react",
|
"jsx": "react",
|
||||||
|
|
Loading…
Reference in a new issue