-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
45 lines (45 loc) · 1.64 KB
/
tsconfig.json
File metadata and controls
45 lines (45 loc) · 1.64 KB
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
41
42
43
44
45
{
"compilerOptions": {
"declaration": true,
"lib": ["DOM", "ES2022"],
"target": "ESNext",
"moduleResolution": "NodeNext",
"useDefineForClassFields": true, // Not enabled by default in `strict` mode unless we bump `target` to ES2022.
"noFallthroughCasesInSwitch": true, // Not enabled by default in `strict` mode.
"noImplicitReturns": true, // Not enabled by default in `strict` mode.
"useUnknownInCatchVariables": true, // Not enabled by default in `strict` mode.
"noImplicitOverride": true, // Not enabled by default in `strict` mode.
"noUnusedLocals": true, // Not enabled by default in `strict` mode.
"noUnusedParameters": true, // Not enabled by default in `strict` mode.
"noUncheckedIndexedAccess": true, // Not enabled by default in `strict` mode.
"resolveJsonModule": true,
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
// Skip type checking for node modules
"skipLibCheck": true,
"paths": {
"*": ["./*"],
"command": ["./command/index.js"],
"configs": ["./configs/index.js"],
"contracts": ["./contracts/index.js"],
"scripts": ["./scripts/index.js"],
"utils": ["./utils/index.js"],
"abi": ["./abi/index.js"],
"providers": ["./providers/index.js"],
"features": ["./features/index.js"],
"types": ["./types/index.js"],
"version": ["./version/index.js"]
},
"outDir": "dist",
"baseUrl": ".",
"sourceMap": true,
"rootDir": ".",
"module": "NodeNext"
},
"ts-node": {
"swc": true,
"require": ["tsconfig-paths/register"]
},
"exclude": ["docs", "dist", "lsv-web-terminal"]
}