-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.server.json
More file actions
29 lines (29 loc) · 901 Bytes
/
Copy pathtsconfig.server.json
File metadata and controls
29 lines (29 loc) · 901 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/strictest/tsconfig.json",
"@tsconfig/node24/tsconfig.json"
],
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": "./src",
"types": ["node"],
"resolveJsonModule": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
// too strict with third-party lib type definitions
"exactOptionalPropertyTypes": false,
// prevent unreachable code being auto deleted
"allowUnreachableCode": true,
// allow unused during dev
"noUnusedLocals": false,
"experimentalDecorators": true
},
"include": ["src/"],
"exclude": ["src/ui/", "src/**/*.test.ts"]
}