forked from Good-Ghosting/goodghosting-protocol-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 707 Bytes
/
tsconfig.json
File metadata and controls
21 lines (21 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"strict": true,
"moduleResolution": "node",
"noImplicitThis": true,
"resolveJsonModule": true,
"alwaysStrict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es2015", "esnext.asynciterable"],
"sourceMap": true,
"typeRoots": ["./node_modules/@types", "./types"],
"types": ["node", "truffle-typings"]
},
"include": ["**/*.ts", "deploy.config.ts", "migrations/1_initial_migration.js", "migrations/2_deploy_contracts.js"],
"files": ["./hardhat.config.ts"],
"exclude": ["node_modules", "example", "build"]
}