Files
cloudflare__vinext/examples/hackernews/tsconfig.json
James Anderson 350865c466 fix(create-vinext-app): generate next env on first run (#2768)
* fix(create-vinext-app): generate next env on first run

* fix(types): keep next env renderer internal
2026-07-31 01:00:56 +01:00

22 lines
407 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"allowJs": true,
"baseUrl": ".",
"noEmit": true,
"types": ["vinext/types", "@cloudflare/workers-types"]
},
"include": [
"app",
"components",
"lib",
"worker"
]
}