-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 813 Bytes
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 813 Bytes
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": {
"outDir": "./transpiled/",
"sourceMap": true,
"noImplicitAny": false,
"lib": ["dom", "es2015", "es2016", "es2017"],
"module": "CommonJS",
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@utils/*": ["test-utils/*"],
},
"allowJs": true,
"target": "ES5",
"skipLibCheck": true,
"typeRoots": [
"node_modules/@0x/typescript-typings/types",
"node_modules/@types"
],
"esModuleInterop": true
},
"include": [
"./types/*.ts",
"./types/chai.d.ts",
"./types/interfaces.d.ts",
"./types/**/*.ts",
"./test/*.ts",
"./scripts/**/*.ts",
"./test/**/*.ts",
"./test-utils/*.ts",
"./test-utils/**/*.ts",
"./migrations/**/*.ts",
"./migrations/*.js"
],
"files": ["./hardhat.config.ts"]
}