From a68201b491a10485eb1365aeed1965757f16c374 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Thu, 16 Mar 2023 21:25:14 +0100 Subject: [PATCH] test: fix component tests (#21725) TypeScript in v5 emits a warning and this ends up in exit code 1. See https://github.com/vuejs/tsconfig/issues/6 for more information. This CL will make TypeScript still end up in exit code 0 even tho these warnings are emitted until they fixed it upstream and released a new version of their config. --- tests/components/ct-vue-vite/tsconfig.test.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/components/ct-vue-vite/tsconfig.test.json b/tests/components/ct-vue-vite/tsconfig.test.json index c54e8e0d55..0c7f9f7369 100644 --- a/tests/components/ct-vue-vite/tsconfig.test.json +++ b/tests/components/ct-vue-vite/tsconfig.test.json @@ -4,6 +4,7 @@ "compilerOptions": { "composite": true, "lib": [], - "types": ["node"] + "types": ["node"], + "ignoreDeprecations": "5.0" } }