-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
30 lines (30 loc) · 1.24 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
{
"compilerOptions": {
"rootDir": ".",
"module": "commonjs",
"target": "es2018",
"moduleResolution": "node",
"allowJs": true /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strict": false /* Enable all strict type-checking options. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"outDir": "lib",
"sourceMap": true,
"checkJs": false,
"types": ["node"],
"typeRoots": ["node_modules/@types"]
},
"include": [
"./**/*.ts",
"./**/*.js",
"node_modules/tribute-contracts/utils/**/*.ts",
"node_modules/tribute-contracts/utils/**/*.js",
"node_modules/tribute-contracts/configs/**/*.ts",
"node_modules/tribute-contracts/configs/**/*.js",
"node_modules/tribute-contracts/migrations/configs/**/*.ts",
"node_modules/tribute-contracts/migrations/configs/**/*.js"
],
"exclude": ["lib/", "build/"],
"files": ["./hardhat.config.js"]
}