mirror of
https://github.com/cloudflare/vinext.git
synced 2026-09-14 19:04:59 +08:00
350865c466
* fix(create-vinext-app): generate next env on first run * fix(types): keep next env renderer internal
18 lines
430 B
JSON
18 lines
430 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"types": ["vinext/types", "@cloudflare/workers-types"]
|
|
},
|
|
"include": ["app", "worker"]
|
|
}
|