-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 773 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 773 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,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2023"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"outDir": "dist",
"rootDir": ".",
"skipLibCheck": true,
"strict": true,
"incremental": true,
"tsBuildInfoFile": ".cache/tsconfig.typecheck.tsbuildinfo",
"target": "ES2023",
"types": ["node"],
"verbatimModuleSyntax": true
},
"include": ["src/**/*.ts", "tests/**/*.ts", "vitest.config.ts"],
"exclude": ["dist", "node_modules"]
}