|
@ -23,7 +23,6 @@ |
|
|
}, |
|
|
}, |
|
|
"noFallthroughCasesInSwitch": true, |
|
|
"noFallthroughCasesInSwitch": true, |
|
|
"forceConsistentCasingInFileNames": true, |
|
|
"forceConsistentCasingInFileNames": true, |
|
|
// set to true to enable stricter type checking for this project |
|
|
|
|
|
"strict": false, |
|
|
"strict": false, |
|
|
"strictNullChecks": false, |
|
|
"strictNullChecks": false, |
|
|
"strictPropertyInitialization": false, |
|
|
"strictPropertyInitialization": false, |
|
@ -34,7 +33,7 @@ |
|
|
"noPropertyAccessFromIndexSignature": false, |
|
|
"noPropertyAccessFromIndexSignature": false, |
|
|
"noUnusedLocals": false, |
|
|
"noUnusedLocals": false, |
|
|
"noUnusedParameters": false, |
|
|
"noUnusedParameters": false, |
|
|
"allowUnreachableCode": true // set to false for stricter type checking |
|
|
"allowUnreachableCode": true |
|
|
}, |
|
|
}, |
|
|
"exclude": ["node_modules", "tmp"] |
|
|
"exclude": ["node_modules", "tmp"] |
|
|
} |
|
|
} |
|
|