From 53286747ca75e1639e3772f200d78d124ac86fc6 Mon Sep 17 00:00:00 2001 From: Martin Masevski Date: Sat, 29 Jun 2024 22:43:39 +0200 Subject: [PATCH] docs: remove warning about type checking (#27911) --- docs/2.guide/1.concepts/8.typescript.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/2.guide/1.concepts/8.typescript.md b/docs/2.guide/1.concepts/8.typescript.md index 4e07f35631..fe66d6540b 100644 --- a/docs/2.guide/1.concepts/8.typescript.md +++ b/docs/2.guide/1.concepts/8.typescript.md @@ -9,10 +9,6 @@ By default, Nuxt doesn't check types when you run [`nuxi dev`](/docs/api/command To enable type-checking at build or development time, install `vue-tsc` and `typescript` as development dependency: -::alert{type="warning"} -You may experience issues with the latest `vue-tsc` and `vite-plugin-checker`, used internally when type checking. For now, you may need to stay on v1 of `vue-tsc`, and follow these upstream issues for updates: [fi3ework/vite-plugin-checker#306](https://github.com/fi3ework/vite-plugin-checker/issues/306) and [vuejs/language-tools#3969](https://github.com/vuejs/language-tools/issues/3969). -:: - ::code-group ```bash [yarn]