-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 871 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 871 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
27
{
"compilerOptions": {
"allowJs": true,
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["ES2025"],
"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", "examples/**/*.ts"],
"exclude": []
}