2026-07-27 05:02:35 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2026-07-30 09:21:55 +08:00
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext", "WebWorker"],
|
2026-07-27 05:02:35 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
2026-07-30 09:21:55 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
2026-07-27 05:02:35 +08:00
|
|
|
"isolatedModules": true,
|
2026-07-30 09:21:55 +08:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxImportSource": "solid-js",
|
2026-07-27 05:02:35 +08:00
|
|
|
"types": ["vite/client"]
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "vite.config.ts"],
|
2026-07-30 09:21:55 +08:00
|
|
|
"exclude": ["dist", "node_modules"]
|
2026-07-27 05:02:35 +08:00
|
|
|
}
|