diff --git a/README.md b/README.md index 2b2199a..60068b5 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ TSConfigs for Vue projects to extend. Requires TypeScript >= 5.0. For TypeScript v4.5 to v4.9, please use [v0.1.x](https://www.npmjs.com/package/@vue/tsconfig/v/0.1.3). +Requires Vue.js >= 3.3. [See below for the breaking changes in v0.3.x.](#migrating-from-typescript--50) diff --git a/package.json b/package.json index 97f71d5..77bc230 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,15 @@ "access": "public" }, "peerDependencies": { - "typescript": "5.x" + "typescript": "5.x", + "vue": "^3.3.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "vue": { + "optional": true + } } }