-
Notifications
You must be signed in to change notification settings - Fork 66
/
tsconfig.json
41 lines (41 loc) · 991 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
33
34
35
36
37
38
39
40
41
{
"compilerOptions": {
"downlevelIteration": true,
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": false,
"skipLibCheck": false,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": false,
"strictNullChecks": true,
"jsx": "preserve",
"incremental": true,
"declaration": true,
"declarationDir": "dist/src",
"outDir": "dist",
"baseUrl": ".",
"paths": {
"@/types": ["src/types/index.ts"],
"@/abi": ["src/abi/index.ts"],
"@/exceptions": ["src/exceptions/index.ts"],
"@/http": ["src/http/index.ts"],
"@/common": ["src/common/index.ts"],
}
},
"include": [
"src",
"__test__",
"./node_modules/types-bn/index.d.ts",
"./node_modules/types-ethereumjs-util/index.d.ts",
]
}