mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 09:19:56 -05:00
20 lines
493 B
JSON
20 lines
493 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"$lib/*": ["./src/lib/*"],
|
|
"$store/*": ["./src/store/*"],
|
|
"$components/*": ["./src/components/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.svelte", "vite.config.ts"]
|
|
}
|