-
Notifications
You must be signed in to change notification settings - Fork 416
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 1014 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 1014 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": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmit": true,
// Node (>=24) runs the release scripts in scripts/*.mts directly via native
// type stripping, which requires explicit `.mts` import specifiers. Permit
// them here (safe: this project is noEmit).
"allowImportingTsExtensions": true,
"paths": {
"vinext/shims/*": ["./packages/vinext/src/shims/*"],
"vinext/internal/*": ["./packages/vinext/src/*"],
"@vinext/cloudflare/internal/*": ["./packages/cloudflare/src/*"],
"@vinext/cloudflare/cache/*": ["./packages/cloudflare/src/cache/*"],
"@vinext/cloudflare/images/*": ["./packages/cloudflare/src/images/*"]
}
},
"exclude": ["node_modules", "dist", "fixtures", "tests/fixtures", "benchmarks", "examples"]
}