mirror of
https://git.shipoclu.com/moon/plspace.git
synced 2026-08-13 02:42:30 +00:00
29 lines
775 B
JSON
29 lines
775 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleResolution": "bundler",
|
|
"types": ["svelte", "vite/client"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"$lib/*": ["src/lib/*"],
|
|
"$components/*": ["src/components/*"],
|
|
"$routes/*": ["src/routes/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.js", "src/**/*.svelte", "vite.config.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|