2025-08-16 07:29:24 +08:00
|
|
|
{
|
2025-08-30 12:58:22 +08:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
2025-08-16 07:29:24 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
2025-09-02 15:18:13 +08:00
|
|
|
"skipLibCheck": true,
|
2025-08-16 07:29:24 +08:00
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxImportSource": "solid-js",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
2025-11-22 23:39:25 +08:00
|
|
|
"types": ["vite/client"],
|
2025-08-16 07:29:24 +08:00
|
|
|
"isolatedModules": true,
|
|
|
|
|
"paths": {
|
2025-09-10 11:43:37 +08:00
|
|
|
"~/*": ["./src/*"]
|
2025-08-16 07:29:24 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|