-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 987 Bytes
/
Copy pathtsconfig.json
File metadata and controls
34 lines (34 loc) · 987 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
30
31
32
33
34
{
"compilerOptions": {
// Incremental typecheck (#8924): tsc writes a .tsbuildinfo (gitignored) and
// reuses it, revalidating only what actually changed. Measured: root 8.5s ->
// 1.8s, apps/ui 28.9s -> 5.6s on a warm buildinfo. CI restores it via
// actions/cache; a cold or stale one simply costs a full check, never a
// wrong one -- tsc verifies every input against the recorded version.
"incremental": true,
"target": "ES2023",
"lib": ["ES2023", "ES2024"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"allowImportingTsExtensions": true
},
"include": [
"src/**/*",
"workers/**/*",
"scripts/**/*",
"tests/**/*",
"schemas-src/**/*"
],
"exclude": [
"node_modules",
"apps/ui",
"packages/*/node_modules",
"packages/*/dist",
"deploy/**"
]
}