-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
31 lines (31 loc) · 1.44 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
{
"compilerOptions": {
"incremental": true, /* Enable incremental compilation */
"composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
"target": "es2021", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"lib": [
"ES2021.String"
],
"module": "commonjs", /* Specify what module code is generated. */
"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": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied `any` type.. */
"allowUnreachableCode": false,
"alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"resolveJsonModule": true /* Allow import of JSON ABI files */
},
"include": [
"./scripts/**/*",
"./proposals/**/*",
"./scripts/*",
"./scripts",
"./test/**/*",
"./typechain-types/**/*",
"./util/**/*"
],
"files": [
"./hardhat.config.ts"
]
}