-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 1.06 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
36
37
{
"compilerOptions": {
"composite": true,
"target": "es6",
"declaration": true,
"declarationMap": false,
"module": "commonjs",
"moduleResolution": "node",
"noEmit": true,
"esModuleInterop": true,
"sourceMap": true,
"removeComments": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"suppressImplicitAnyIndexErrors": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": false,
"noUnusedLocals": false,
"noEmitOnError": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"pretty": true,
"lib": ["es2017", "esnext.asynciterable"],
"types": ["node"]
},
"include": ["scripts", "test", "typechain-types", "artifacts/contracts/**/*.json"],
"files": ["./hardhat.config.ts"],
"exclude": ["node_modules"]
}