Files
web-app/jsconfig.json

21 lines
474 B
JSON
Raw Permalink Normal View History

2026-08-15 05:27:48 +03:00
{
"compilerOptions": {
"moduleResolution": "bundler",
"target": "ESNext",
"module": "ESNext",
"verbatimModuleSyntax": true,
"isolatedModules": true,
"resolveJsonModule": true,
"sourceMap": true,
"esModuleInterop": true,
"types": ["vite/client"],
"skipLibCheck": true,
2026-09-08 17:38:13 +03:00
"checkJs": true,
"baseUrl": ".",
"paths": {
"$lib/*": ["src/lib/*"]
}
2026-08-15 05:27:48 +03:00
},
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"]
}