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