forked from meemproject/meem-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 815 Bytes
/
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
{
"compilerOptions": {
/*
* Uncomment for small accuracy reduction & vast build time reduction for
* --watch mode
*/
// "assumeChangesOnlyAffectDirectDependencies": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"declaration": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["esnext"],
"module": "CommonJS",
"moduleResolution": "node",
"noImplicitThis":true,
"outDir": "dist",
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"target": "es6",
},
"exclude": ["**/dist"],
"include": [
"./tasks",
"./test",
"./typechain",
"./scripts",
"./types",
],
"files": ["./hardhat.config.ts"]
}