We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
strict
1 parent d93e163 commit 6cbaaf5Copy full SHA for 6cbaaf5
tsconfig.json
@@ -9,7 +9,6 @@
9
"emitDeclarationOnly": true,
10
"isolatedModules": true,
11
"outDir": "./es",
12
- "noImplicitAny": true,
13
"noImplicitOverride": true,
14
"module": "es2020",
15
"target": "es2020",
@@ -18,15 +17,13 @@
18
17
"preserveConstEnums": true,
19
"declaration": true,
20
"downlevelIteration": true,
21
- "noImplicitThis": true,
22
- "strictPropertyInitialization": true,
23
- "strictNullChecks": true,
24
- "useUnknownInCatchVariables": true,
25
"allowSyntheticDefaultImports": true,
26
"typeRoots": [
27
"./node_modules/@types",
28
"./src/typings"
29
- ]
+ ],
+ "strict": true,
+ "strictFunctionTypes": false, // see https://github.com/aeternity/aepp-sdk-js/issues/1793
30
},
31
"include": [
32
"src/**/*"
0 commit comments