From 01d739db257d3340f1b8582c2432753e88875fd5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 1 May 2023 22:07:00 +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-sonar.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/ui/web/tsconfig-sonar.json b/ui/web/tsconfig-sonar.json index c57b39c5..f1567906 100644 --- a/ui/web/tsconfig-sonar.json +++ b/ui/web/tsconfig-sonar.json @@ -1,19 +1,23 @@ { "$schema": "https://json.schemastore.org/tsconfig", - "extends": "@vue/tsconfig/tsconfig.dom.json", "compilerOptions": { - "lib": ["es2023"], - "module": "commonjs", - "target": "es2022", + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "module": "ESNext", + "target": "ESNext", "strict": true, + "noImplicitThis": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, - "moduleResolution": "node", + "moduleResolution": "bundler", + "resolveJsonModule": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "sourceMap": true, "composite": true, + "jsx": "preserve", + "isolatedModules": true, + "useDefineForClassFields": true, "baseUrl": ".", "types": ["node", "jsdom"], "paths": { -- 2.34.1