2025-11-22 09:41:27 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxImportSource": "solid-js",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"strict": true,
|
2025-11-24 03:28:10 +08:00
|
|
|
"types": ["@cloudflare/workers-types", "vite/client"],
|
2025-11-22 09:41:27 +08:00
|
|
|
"isolatedModules": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"~/*": ["./src/*"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|