forked from rsksmart/rif-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (31 loc) · 901 Bytes
/
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
{
"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",
"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,
// to avoid ts errors with chai and chai-as-promised
"esModuleInterop": true
},
"exclude": [
"node_modules",
"dist"
]
}