-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 854 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 854 Bytes
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
{
"compilerOptions": {
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["ES2025", "DOM"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./lib",
"skipLibCheck": true,
"sourceMap": true,
"target": "ES2022",
"typeRoots": ["./node_modules/@types", "src/@types"],
"types": ["node"]
},
"include": ["src/**/*", "test/**/*.ts"],
"exclude": ["node_modules", "lib"]
}