2025-09-15 15:28:08 +08:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
|
"compilerOptions": {
|
2025-10-11 06:17:10 +08:00
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
2025-09-15 15:28:08 +08:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxImportSource": "solid-js",
|
2025-10-11 06:17:10 +08:00
|
|
|
"allowJs": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"isolatedModules": true,
|
2025-09-15 15:28:08 +08:00
|
|
|
"paths": {
|
2025-09-15 15:31:02 +08:00
|
|
|
"@/*": ["./src/*"]
|
2025-09-15 15:28:08 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|