From: Jérôme Benoit Date: Mon, 24 Apr 2023 12:14:31 +0000 (+0200) Subject: build(ci): fix sonar-scanner X-Git-Tag: v1.2.12~96 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=9cb473e9d662c45e1d355195c11228a1dc86d06a;p=e-mobility-charging-stations-simulator.git build(ci): fix sonar-scanner Signed-off-by: Jérôme Benoit --- 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,