Update devDependencies in package.json and simplify Svelte config by removing sourcemap option

This commit is contained in:
becarta
2025-05-16 00:32:57 +02:00
parent 046b5241a2
commit bfdac3f322
2 changed files with 11 additions and 12 deletions

View File

@@ -10,16 +10,16 @@
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "2.4.6",
"@tsconfig/svelte": "4.0.1",
"autoprefixer": "10.4.16",
"postcss": "8.4.31",
"svelte": "4.2.7",
"svelte-check": "3.4.3",
"tailwindcss": "3.3.5",
"tslib": "2.4.1",
"typescript": "4.9.5",
"vite": "4.4.9"
"@sveltejs/vite-plugin-svelte": "3.0.1",
"@tsconfig/svelte": "5.0.2",
"autoprefixer": "10.4.17",
"postcss": "8.4.35",
"svelte": "4.2.12",
"svelte-check": "3.6.3",
"tailwindcss": "3.4.1",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vite": "5.1.4"
},
"dependencies": {
"@lottiefiles/lottie-player": "2.0.2"

View File

@@ -1,8 +1,7 @@
/** @type {import('@sveltejs/vite-plugin-svelte').Options} */
const config = {
compilerOptions: {
css: 'injected',
enableSourcemap: true
css: 'injected'
}
};