diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json index 0e6337d86..cbe7d039f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,17 +1,20 @@ { "compilerOptions": { - "target": "es5", + "target": "es6", "jsx": "react", "experimentalDecorators": true, "module": "system", "sourceMap": true, "noLib": true, "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "strictNullChecks": true, + "noImplicitAny": true }, "files": [ "lib/i18n.ts", "lib/refs.ts", + "lib/shopApi.ts", "lib/wallet/checkable.ts", "lib/wallet/cryptoApi.ts", "lib/wallet/cryptoLib.ts", |