Skip to content

Commit f6270a1

Browse files
committed
chore: update deps version
1 parent 3d24350 commit f6270a1

File tree

6 files changed

+283
-260
lines changed

6 files changed

+283
-260
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import eslintConfigPrettier from 'eslint-config-prettier'
77
/** @type {import('eslint').Linter.Config[]} */
88
export default [
99
{ files: ['**/*.{js,mjs,cjs,ts,vue}'] },
10-
{ languageOptions: { globals: globals.browser } },
10+
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } },
1111
pluginJs.configs.recommended,
1212
...tseslint.configs.recommended,
1313
...pluginVue.configs['flat/recommended'],

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"@types/leaflet-fullscreen": "^1.0.6",
1818
"leaflet": "^1.9.4",
1919
"leaflet-fullscreen": "^1.0.2",
20-
"vue": "^3.2.47",
21-
"vue-i18n": "9.3.0-beta.19"
20+
"vue": "^3.5.13",
21+
"vue-i18n": "^10.0.4"
2222
},
2323
"devDependencies": {
2424
"@commitlint/cli": "^17.6.6",
@@ -42,11 +42,11 @@
4242
"stylelint-config-recommended-vue": "^1.4.0",
4343
"stylelint-config-standard-scss": "^10.0.0",
4444
"terser": "^5.18.2",
45-
"typescript": "^5.0.2",
45+
"typescript": "^5.6.3",
4646
"typescript-eslint": "^8.15.0",
4747
"vite": "^5.4.11",
48-
"vite-plugin-checker": "^0.6.4",
49-
"vue-tsc": "^1.4.2"
48+
"vite-plugin-checker": "^0.8.0",
49+
"vue-tsc": "^2.1.10"
5050
},
5151
"config": {
5252
"commitizen": {

tsconfig.app.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"compilerOptions": {
3+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4+
"target": "ES2020",
5+
"useDefineForClassFields": true,
6+
"module": "ESNext",
7+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
8+
"skipLibCheck": true,
9+
10+
/* Bundler mode */
11+
"moduleResolution": "Bundler",
12+
"allowImportingTsExtensions": true,
13+
"isolatedModules": true,
14+
"moduleDetection": "force",
15+
"noEmit": true,
16+
"jsx": "preserve",
17+
18+
/* Linting */
19+
"strict": true,
20+
"noUnusedLocals": true,
21+
"noUnusedParameters": true,
22+
"noFallthroughCasesInSwitch": true,
23+
"noUncheckedSideEffectImports": true
24+
},
25+
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
26+
}

tsconfig.json

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,7 @@
11
{
2-
"compilerOptions": {
3-
"target": "ES2020",
4-
"useDefineForClassFields": true,
5-
"module": "ESNext",
6-
"lib": ["ES2020", "DOM", "DOM.Iterable"],
7-
"skipLibCheck": true,
8-
9-
/* Bundler mode */
10-
"moduleResolution": "bundler",
11-
"allowImportingTsExtensions": true,
12-
"resolveJsonModule": true,
13-
"isolatedModules": true,
14-
"noEmit": true,
15-
"jsx": "preserve",
16-
17-
/* Linting */
18-
"strict": true,
19-
"noUnusedLocals": true,
20-
"noUnusedParameters": true,
21-
"noFallthroughCasesInSwitch": true
22-
},
23-
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
24-
"references": [{ "path": "./tsconfig.node.json" }]
2+
"files": [],
3+
"references": [
4+
{ "path": "./tsconfig.app.json" },
5+
{ "path": "./tsconfig.node.json" }
6+
]
257
}

tsconfig.node.json

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
{
22
"compilerOptions": {
3-
"composite": true,
4-
"skipLibCheck": true,
3+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4+
"target": "ES2022",
5+
"lib": ["ES2023"],
56
"module": "ESNext",
6-
"moduleResolution": "bundler",
7-
"allowSyntheticDefaultImports": true
7+
"skipLibCheck": true,
8+
9+
/* Bundler mode */
10+
"moduleResolution": "Bundler",
11+
"allowImportingTsExtensions": true,
12+
"isolatedModules": true,
13+
"moduleDetection": "force",
14+
"noEmit": true,
15+
16+
/* Linting */
17+
"strict": true,
18+
"noUnusedLocals": true,
19+
"noUnusedParameters": true,
20+
"noFallthroughCasesInSwitch": true,
21+
"noUncheckedSideEffectImports": true
822
},
923
"include": ["vite.config.ts"]
1024
}

0 commit comments

Comments
 (0)