-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.json
37 lines (36 loc) · 1.06 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"extends": "@tsconfig/node16-strictest/tsconfig.json",
"compilerOptions": {
/*
* Overwrite `"importsNotUsedAsValues": "error"` set in
* "@tsconfig/node16-strictest/tsconfig.json".
* Reset the default behaviour to avoid compilation errors
* due to import of types from typechain-types.
*/
"importsNotUsedAsValues": "remove",
/*
* Adding `undefined` to array item type makes less sense
* in testing, where items of arrays in runtime are
* generally guaranteed to exist, thus we overwrite
* `noUncheckedIndexedAccess` to false.
*/
"noUncheckedIndexedAccess": false,
"resolveJsonModule": true,
"outDir": "dist",
"declaration": true,
"baseUrl": "./",
"strictNullChecks": true,
"strictPropertyInitialization": true,
"exactOptionalPropertyTypes": false,
"alwaysStrict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"extendedDiagnostics":true,
"noErrorTruncation": true,
"sourceMap": true
},
"exclude": [
"node_modules",
"dist"
]
}