build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / ui / web / tsconfig.json
... / ...
CommitLineData
1{
2 "extends": [
3 "@tsconfig/node20/tsconfig.json",
4 "@vue/tsconfig/tsconfig.json"
5 ],
6 "compilerOptions": {
7 "experimentalDecorators": true,
8 "allowSyntheticDefaultImports": true,
9 "sourceMap": true,
10 "baseUrl": ".",
11 "types": [
12 "node",
13 "mocha",
14 "chai"
15 ],
16 "paths": {
17 "@/*": [
18 "src/*"
19 ]
20 },
21 "lib": [
22 "esnext",
23 "dom"
24 ]
25 },
26 "include": [
27 "src/**/*.ts",
28 "src/**/*.tsx",
29 "src/**/*.vue",
30 "tests/**/*.ts",
31 "tests/**/*.tsx"
32 ],
33 "exclude": [
34 "node_modules"
35 ]
36}