mirror of
https://github.com/cloudflare/vinext.git
synced 2026-09-14 19:04:59 +08:00
0a48f0f7fb
* feat(cloudflare): move deploy command to cloudflare package * fix(cloudflare): expose deploy cli bin
27 lines
1014 B
JSON
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"]
|
|
}
|