diff --git a/eslint.config.js b/eslint.config.js index bd7ed57..caf091d 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -2,9 +2,11 @@ import js from '@eslint/js'; import eslintPluginSvelte from 'eslint-plugin-svelte'; import * as svelteParser from 'svelte-eslint-parser'; import * as typescriptParser from '@typescript-eslint/parser'; +import tseslint from 'typescript-eslint'; -export default [ +export default tseslint.config( js.configs.recommended, + ...tseslint.configs.recommended, ...eslintPluginSvelte.configs.recommended, { files: ['**/*.svelte'], @@ -25,4 +27,4 @@ export default [ { ignores: ['.netlify', '.svelte-kit', 'static', 'build'] } -]; +); diff --git a/package.json b/package.json index 8dff807..1889b6e 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,6 @@ "svelte-check": "^3.7.1", "svelte-preprocess": "^5.1.4", "tailwindcss": "^3.4.17", - "tslib": "^2.8.1", "typescript": "^5.7.3", "typescript-eslint": "^8.20.0", "vite": "^5.2.11"