-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) 路 699 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) 路 699 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
{
"compilerOptions": {
"module": "Node20",
"moduleResolution": "Node16",
"target": "ES2023",
"esModuleInterop": true,
"noImplicitAny": false,
"skipLibCheck": true,
"noUnusedLocals": false,
"importHelpers": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"useDefineForClassFields": false,
"useUnknownInCatchVariables": false,
"allowJs": false,
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": false,
"strictNullChecks": true,
"types": ["node", "vitest/globals"]
},
"include": ["src/**/*.ts", "test/**/*.ts", "vitest.config.mts"],
"exclude": ["node_modules", "dist", "coverage"]
}