mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 11:59:39 +02:00
These essential files were never committed: - svelte.config.js - vite.config.ts - tsconfig.json - src/app.html Without these, SvelteKit cannot build the app. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
305 B
JSON
14 lines
305 B
JSON
{
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"moduleResolution": "bundler"
|
|
}
|
|
}
|