X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Ftsconfig.json;h=4c48e296d56b106fa7de2395378261f44686fe5c;hb=bcb671db37d3f4f60d5ac300df8b686404e787ff;hp=9a3e10e71af6254bb9537175d2937f995f145db8;hpb=03682e2e36e2236174a6dc7052494345165798c9;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/tsconfig.json b/ui/web/tsconfig.json index 9a3e10e7..4c48e296 100644 --- a/ui/web/tsconfig.json +++ b/ui/web/tsconfig.json @@ -1,33 +1,17 @@ { - "extends": "@vue/tsconfig/tsconfig.json", + "$schema": "https://json.schemastore.org/tsconfig", + "extends": ["@tsconfig/node20/tsconfig.json", "@vue/tsconfig/tsconfig.dom.json"], "compilerOptions": { "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "sourceMap": true, - "baseUrl": ".", - "types": [ - "node", - "mocha", - "chai" - ], + "composite": true, + "baseUrl": "./", + "types": ["node", "jsdom"], "paths": { - "@/*": [ - "src/*" - ] - }, - "lib": [ - "esnext", - "dom" - ] + "@/*": ["./src/*"] + } }, - "include": [ - "src/**/*.ts", - "src/**/*.tsx", - "src/**/*.vue", - "tests/**/*.ts", - "tests/**/*.tsx" - ], - "exclude": [ - "node_modules" - ] + "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"], + "exclude": ["node_modules"] }