generated from PaulRBerg/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 975 Bytes
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 975 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
37
{
"compilerOptions": {
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es5", "es6"],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "dist",
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "es5",
},
"exclude": ["node_modules"],
"include": [
"@types/**/*",
"artifacts/**/*",
"artifacts/**/*.json",
"dev-utils/**/*",
"migrations/*",
"scripts/**/*",
"tasks/**/*",
"test/**/*",
"typechain/**/*",
"types/**/*",
"truffle-config.js",
"hardhat.config.ts"
],
"files": [
"hardhat.config.ts",
"./node_modules/@nomiclabs/hardhat-ethers/src/type-extensions.d.ts",
"./node_modules/@nomiclabs/hardhat-waffle/src/type-extensions.d.ts",
"./node_modules/@nomiclabs/hardhat-web3/src/type-extensions.d.ts",
"./node_modules/@nomiclabs/hardhat-truffle5/src/type-extensions.d.ts"
]
}