From: Jérôme Benoit Date: Mon, 24 Apr 2023 20:07:46 +0000 (+0200) Subject: build(ui): import the proper @vue/tsconfig file X-Git-Tag: v1.2.12~88 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;ds=inline;h=bc5b1e94c9b908990fdb7590fa56ae65cfdc83a1;p=e-mobility-charging-stations-simulator.git build(ui): import the proper @vue/tsconfig file Signed-off-by: Jérôme Benoit --- diff --git a/ui/web/tsconfig.json b/ui/web/tsconfig.json index bec95477..69f19c7e 100644 --- a/ui/web/tsconfig.json +++ b/ui/web/tsconfig.json @@ -1,6 +1,6 @@ { "$schema": "https://json.schemastore.org/tsconfig", - "extends": ["@tsconfig/node20/tsconfig.json", "@vue/tsconfig/tsconfig.json"], + "extends": ["@tsconfig/node20/tsconfig.json", "@vue/tsconfig/tsconfig.dom.json"], "compilerOptions": { "experimentalDecorators": true, "allowSyntheticDefaultImports": true, @@ -9,8 +9,7 @@ "types": ["node", "mocha", "chai"], "paths": { "@/*": ["src/*"] - }, - "lib": ["esnext", "dom"] + } }, "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"], "exclude": ["node_modules"]