From 9cb473e9d662c45e1d355195c11228a1dc86d06a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 24 Apr 2023 14:14:31 +0200 Subject: [PATCH] build(ci): fix sonar-scanner MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- ui/web/tsconfig-base.json | 7 +++++++ ui/web/tsconfig.json | 6 ++---- 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 ui/web/tsconfig-base.json diff --git a/ui/web/tsconfig-base.json b/ui/web/tsconfig-base.json new file mode 100644 index 00000000..d594040c --- /dev/null +++ b/ui/web/tsconfig-base.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "extends": [ + "@tsconfig/node20/tsconfig.json", + "@vue/tsconfig/tsconfig.json" + ] +} diff --git a/ui/web/tsconfig.json b/ui/web/tsconfig.json index 99a246e7..f7ba3200 100644 --- a/ui/web/tsconfig.json +++ b/ui/web/tsconfig.json @@ -1,8 +1,6 @@ { - "extends": [ - "@tsconfig/node20/tsconfig.json", - "@vue/tsconfig/tsconfig.json" - ], + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "./tsconfig-base.json", "compilerOptions": { "experimentalDecorators": true, "allowSyntheticDefaultImports": true, -- 2.34.1