Skip to content

Commit

Permalink
feat!: upgrade typescript-eslint to v7
Browse files Browse the repository at this point in the history
BREAKING CHANGES:
- Node.js version requirement updated to `^18.18.0 || >=20.0.0`
- TypeScript peer dependency requirement updated to `>=4.7.4`
- ESLint peer dependency requirement updated to `^8.56.0`

https://typescript-eslint.io/blog/announcing-typescript-eslint-v7

It's a small breaking change, but paves the way for future ESLint Flat
Config support. We might introduce a separate flat config entry in later
minor versions.

I also updated some dev dependencies to ensure that this package works
correctly with the latest versions of them.

Closes #69
Closes #71
  • Loading branch information
sodatea committed Mar 8, 2024
1 parent 1ec0ef9 commit 2abd17e
Show file tree
Hide file tree
Showing 2 changed files with 149 additions and 104 deletions.
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -30,31 +30,31 @@
},
"homepage": "https://github.com/vuejs/eslint-config-typescript#readme",
"devDependencies": {
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.22.0",
"execa": "^4.1.0",
"jest": "^26.6.3",
"typescript": "^4.9.5",
"typescript": "^5.4.2",
"vue": "^2.7.14",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2"
},
"peerDependencies": {
"eslint": "^6.2.0 || ^7.0.0 || ^8.0.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.0.0",
"typescript": "*"
"typescript": ">=4.7.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"vue-eslint-parser": "^9.3.1"
},
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": "^18.18.0 || >=20.0.0"
}
}

0 comments on commit 2abd17e

Please sign in to comment.