-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
35 lines (34 loc) · 1.01 KB
/
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
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist",
"sourceMap": true,
"noImplicitAny": false,
"lib": ["dom", "es2015", "es2016", "es2017"],
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@utils/*": ["test-utils/*"]
},
"allowJs": true,
"typeRoots": ["node_modules/@0x/typescript-typings/types", "node_modules/@types"]
},
// "include": ["./tasks/**/*.ts", ".eslintrc.js"],
"files": ["./hardhat.config.ts"],
"include": [
"./scripts",
// "./tests", @todo uncomment when tests are converted to support ethers typechain typings
"./tests-onchain",
"./types",
"./tasks",
"./deployment/deploy",
"./tests-onchain"
],
"exclude": ["./scripts/utils"]
}