migration to SvelteKit 2
continuous-integration/drone/push Build is passing Details

This commit is contained in:
nemunaire 2024-01-09 10:04:13 +01:00
parent 1c4afb2461
commit b4ff6314d6
3 changed files with 539 additions and 196 deletions

721
ui/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -11,25 +11,26 @@
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.0",
"@sveltejs/kit": "^1.20.4",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.35.0",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.0.0",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.4.0",
"typescript": "^5.0.0",
"vite": "^4.0.0"
"vite": "^5.0.0"
},
"type": "module",
"dependencies": {
"dayjs": "^1.11.5",
"svelte-frappe-charts": "^1.9.1"
}
}
}

View File

@ -1,7 +1,7 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"moduleResolution": "bundler",
"module": "es2020",
"lib": ["es2020", "DOM"],
"target": "es2019",
@ -9,7 +9,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,
/**