Upgrade kit from 1.0.0-next.202 to 1.0.0-next.299

annoyingly got stuck in dependency hell here because of breaking changes in vite-plugin-svelte
This commit is contained in:
Ryan Gossiaux
2023-06-14 12:10:22 -07:00
parent 20cf4f0e16
commit 782b3ee49c
6 changed files with 540 additions and 839 deletions

View File

@@ -1,32 +1,10 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "es2020",
"lib": ["es2020", "DOM"],
"target": "es2020",
"strict": true,
/**
svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
to enforce using \`import type\` instead of \`import\` for Types.
*/
"importsNotUsedAsValues": "error",
"preserveValueImports": true,
"isolatedModules": true,
"resolveJsonModule": true,
/**
To have warnings/errors of the Svelte compiler at the correct position,
enable source maps by default.
*/
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"allowJs": true,
"checkJs": true,
"paths": {
"$lib": ["src/lib"],
"$lib/*": ["src/lib/*"],
"$lib":["src/lib"],
"$lib/*":["src/lib/*"],
"*": ["src/types/*"]
}
},