diff --git a/renovate.json b/renovate.json index f8942e6..12ad299 100644 --- a/renovate.json +++ b/renovate.json @@ -9,12 +9,26 @@ "customManagers:biomeVersions" ], "labels": ["dependencies"], + "packageRules": [ + { + "matchDepNames": ["@types/vscode"], + "rangeStrategy": "bump" + } + ], "customManagers": [ { "customType": "regex", "fileMatch": ["^.github/(?:workflows|actions)/.+\\.ya?ml$"], "matchStrings": ["os: (?.*)-(?.*)"], "datasourceTemplate": "github-runners" + }, + { + "customType": "jsonata", + "fileFormat": "json", + "fileMatch": ["^package.json$"], + "depNameTemplate": "@types/vscode", + "matchStrings": ["engines.{ \"currentValue\": vscode}"], + "datasourceTemplate": "npm" } ] }