Skip to content

Commit 6cbaaf5

Browse files
committed
chore: use strict instead of separate options
1 parent d93e163 commit 6cbaaf5

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

tsconfig.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"emitDeclarationOnly": true,
1010
"isolatedModules": true,
1111
"outDir": "./es",
12-
"noImplicitAny": true,
1312
"noImplicitOverride": true,
1413
"module": "es2020",
1514
"target": "es2020",
@@ -18,15 +17,13 @@
1817
"preserveConstEnums": true,
1918
"declaration": true,
2019
"downlevelIteration": true,
21-
"noImplicitThis": true,
22-
"strictPropertyInitialization": true,
23-
"strictNullChecks": true,
24-
"useUnknownInCatchVariables": true,
2520
"allowSyntheticDefaultImports": true,
2621
"typeRoots": [
2722
"./node_modules/@types",
2823
"./src/typings"
29-
]
24+
],
25+
"strict": true,
26+
"strictFunctionTypes": false, // see https://github.com/aeternity/aepp-sdk-js/issues/1793
3027
},
3128
"include": [
3229
"src/**/*"

0 commit comments

Comments
 (0)