-
Notifications
You must be signed in to change notification settings - Fork 83
/
tsconfig.json
31 lines (31 loc) · 921 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
{
"compilerOptions": {
"outDir": "./dist/",
"target": "ES2019",
"lib": ["dom", "ES2019"],
"module": "CommonJS",
"declaration": true,
"esModuleInterop": true,
"sourceMap": true,
"noImplicitAny": false,
"allowJs": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@utils/*": ["test-utils/*"]
},
"typeRoots": ["node_modules/@types"]
},
"include": ["./types/**/*.ts", "./tasks/**/*.ts", "./test/**/*.ts", "./test-fork/**/*.ts", "./test-utils/**/*.ts", "./*.js"],
"files": [
"./index.ts",
"./hardhat.config.ts",
"./hardhat-fork.config.ts",
"./hardhat-fork-polygon.config.ts",
"./tasks.config.ts",
"./tasks-fork.config.ts",
"./tasks-fork-polygon.config.ts"
]
}