X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Ftsconfig.json;h=4c48e296d56b106fa7de2395378261f44686fe5c;hb=7445d18b9b9ac750b9dc3dc3638d4fd0e8aff818;hp=8269c9eba8597a914ffc19a31bed513f5032dc1f;hpb=ebbfbf1c01e010d051956867484b74a94237f546;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/tsconfig.json b/ui/web/tsconfig.json index 8269c9eb..4c48e296 100644 --- a/ui/web/tsconfig.json +++ b/ui/web/tsconfig.json @@ -1,33 +1,17 @@ { - "extends": "@vue/tsconfig/tsconfig.node.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"] }