tsconfig: make more like the iOS one.
parent
18c7dcc816
commit
c6cf55c569
|
@ -10,19 +10,21 @@
|
|||
"sourceMap": true,
|
||||
"allowJs": true,
|
||||
"jsx": "preserve",
|
||||
"moduleResolution": "node",
|
||||
"rootDir": "src",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"noImplicitReturns": true,
|
||||
"noImplicitThis": true,
|
||||
"noImplicitAny": true,
|
||||
"strictNullChecks": true,
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"noUnusedLocals": true,
|
||||
"moduleResolution": "node",
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": false,
|
||||
"noImplicitReturns": true,
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"noUnusedParameters": false,
|
||||
"strictNullChecks": true,
|
||||
"strictBindCallApply": true,
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true
|
||||
|
|
Loading…
Reference in New Issue