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
22 lines
407 B
JSON
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"
|
|
]
|
|
}
|