mirror of
https://github.com/cloudflare/vinext.git
synced 2026-09-14 19:04:59 +08:00
b859a03bbd
* feat(types): add vendored Next.js declarations * feat(types): expose fallback types through vinext * fix(types): support readonly Node environment declarations * fix(ci): install vendored types before vinext tarballs * test(types): avoid brittle packed consumer pins * fix(ci): configure pnpm 11 local type overrides * test(types): avoid registry metadata in packed install * test(types): isolate packed declaration install * feat(init): add standard script aliases for new apps * fix(create-vinext-app): run typegen portably * fix(typegen): report next env updates * fix(create-vinext-app): use standard scripts only * refactor(create-vinext-app): use exhaustive package manager return * fix(create-vinext-app): fall back for unknown package managers
16 lines
331 B
JSON
16 lines
331 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"types": ["vite/client", "@vitejs/plugin-rsc/types"],
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "app", "*.ts"]
|
|
}
|