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