-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtsconfig.json
40 lines (40 loc) · 1.15 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
38
39
40
{
"compilerOptions": {
"composite": true,
"declaration": true,
"target": "es2022",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"outDir": "dist",
"baseUrl": ".",
"skipLibCheck": true,
"paths": {
"@/tasks": ["./tasks/index.ts"],
"@/tasks/utils": ["./tasks/utils/*"],
"@/test/helpers": ["./test/helpers/index.ts"],
"@/plugins": ["./plugins/index.ts"],
"@/contracts.json": ["./contracts.json"],
"@/artifacts/*": ["./artifacts/contracts/*"],
"@/legacy-artifacts/*": ["./legacy-artifacts/contracts/*"],
"@/typechain-types/artifacts/contracts/*": [
"./types/typechain-types/artifacts/contracts/*"
],
"@/typechain-types": ["./types/typechain-types/index.ts"],
"@/*": ["./*"]
},
"ignoreDeprecations": "5.0"
},
"include": [
"./plugins/fireblocks/type-extensions.ts",
"**/*.ts",
"types/**/*.d.ts",
"./.eslintrc.js",
"contracts.json",
"artifacts/contracts/**/*.json",
"legacy-artifacts/**/*.json"
]
}