-
Notifications
You must be signed in to change notification settings - Fork 99
/
tsconfig.json
36 lines (36 loc) · 931 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
{
"compilerOptions": {
"moduleResolution": "node",
"allowJs": true,
"checkJs": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"target": "es2018",
"module": "commonjs",
"esModuleInterop": true,
"outDir": "dist",
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@contracts/*" : ["contracts/*"],
"@custom-types/*" : ["types/*"], // @types is reserved
"@scripts/*" : ["scripts/*"],
"@test/*" : ["test/*"],
"@proposals/*" : ["proposals/*"],
"@protocol/*" : ["protocol-configuration/*"],
}
},
"include": [
"test/*", "test/**/*",
"scripts/*", "scripts/**/*",
"proposals/*", "proposals/**/*",
"protocol-configuration/*", "protocol-configuration/**/*",
"types/*", "types/**/*",
],
"exclude": [
"scripts/deploy/old/*",
"proposals/dao/old/*"
],
"files": ["./hardhat.config.ts"],
}