X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Ftsconfig.json;h=eb8bcbce64544fd84d54c39c083e3be1018525df;hb=fac8866f9d09e5621d41337fb5f53adba1cfc0e7;hp=bfd63b8a021831cb88ed094cee6b0fe6276c3ae4;hpb=0f4540150dd0b9c8bf96b92182413237e9ac0491;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/tsconfig.json b/ui/web/tsconfig.json index bfd63b8a..eb8bcbce 100644 --- a/ui/web/tsconfig.json +++ b/ui/web/tsconfig.json @@ -1,37 +1,17 @@ { "$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, "sourceMap": true, + "composite": true, "baseUrl": ".", - "types": [ - "node", - "mocha", - "chai" - ], + "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"] }