forked from maticnetwork/predict
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
54 lines (54 loc) · 1.21 KB
/
tsconfig.json
File metadata and controls
54 lines (54 loc) · 1.21 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"compilerOptions": {
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"es5",
"es6"
],
"module": "CommonJS",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "dist",
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "ES2015",
"allowJs": true,
"removeComments": false,
"incremental": true,
"baseUrl": ".",
"paths": {
"@maticnetwork/*": [
"lib/*"
],
"typechain": [
"typechain/"
]
},
"skipLibCheck": true,
"typeRoots": [
"./src",
"./src/typings",
"./node_modules/ethers/index.d.ts",
"./node_modules/@nomiclabs/buidler-waffle/src/type-extensions.d.ts",
"./node_modules/@nomiclabs/buidler-ethers/src/type-extensions.d.ts",
]
},
"exclude": [
"./node_modules"
],
"include": [
"node_modules/ethers/index.d.ts",
"node_modules/@nomiclabs/buidler-waffle/src/type-extensions.d.ts",
"node_modules/@nomiclabs/buidler-ethers/src/type-extensions.d.ts",
"artifacts/**/*",
"artifacts/**/*.json",
"typechain/**/*",
"src",
"lib",
"test",
"buidler.config.ts",
"tasks"
]
}