Files
cloudflare__vinext/tsconfig.json
James Anderson 0a48f0f7fb feat(cloudflare): move deploy command to cloudflare package (#2405)
* feat(cloudflare): move deploy command to cloudflare package

* fix(cloudflare): expose deploy cli bin
2026-06-29 16:47:28 +00:00

27 lines
1014 B
JSON

{
"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"]
}