-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (26 loc) · 692 Bytes
/
Copy pathtsconfig.json
File metadata and controls
29 lines (26 loc) · 692 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
28
29
{
"extends": "@tsconfig/node24/tsconfig.json",
"compilerOptions": {
"target": "es2024",
"module": "nodenext",
"noEmit": true,
"outDir": "lib",
"rootDir": "src",
"strict": true,
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"isolatedModules": true,
"moduleDetection": "force",
"moduleResolution": "node16",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"useDefineForClassFields": true,
"verbatimModuleSyntax": true
},
"include": ["src"]
}