Skip to content

Commit

Permalink
Merge pull request #163 from rgieseke/update-sveltekit-2
Browse files Browse the repository at this point in the history
Update to SvelteKit 2
  • Loading branch information
mhkeller authored Feb 10, 2024
2 parents b7bf89a + 7e82db4 commit 6af8eb2
Show file tree
Hide file tree
Showing 13 changed files with 960 additions and 4,168 deletions.
28 changes: 8 additions & 20 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"moduleResolution": "bundler",
"module": "es2020",
"lib": [
"es2020",
Expand All @@ -12,7 +12,6 @@
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",
"isolatedModules": true,
"resolveJsonModule": true,
/**
Expand All @@ -23,29 +22,18 @@
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"allowJs": true,
"checkJs": true,
"strict": true,
"paths": {
"$lib": [
"src/lib"
],
"$lib/*": [
"src/lib/*"
],
"layercake": ["src/lib/index.js"],
"layercake/*": ["src/lib/*"]
}
"strict": true
},
"include": [
"src/**/*.d.ts",
"src/**/*.js",
"src/**/*.ts",
"src/**/*.svelte"
"./src/**/*.d.ts",
"./src/**/*.js",
"./src/**/*.ts",
"./src/**/*.svelte"
],
"exclude": [
"src/_data/*",
"src/scripts/**/*"
"./src/_data/*",
"./src/scripts/**/*"
]
}
Loading

0 comments on commit 6af8eb2

Please sign in to comment.