Vue UI + UI server
[e-mobility-charging-stations-simulator.git] / src / ui / web / tsconfig.json
1 {
2 "compilerOptions": {
3 "target": "esnext",
4 "module": "esnext",
5 "strict": true,
6 "jsx": "preserve",
7 "moduleResolution": "node",
8 "experimentalDecorators": true,
9 "skipLibCheck": true,
10 "esModuleInterop": true,
11 "allowSyntheticDefaultImports": true,
12 "forceConsistentCasingInFileNames": true,
13 "useDefineForClassFields": true,
14 "sourceMap": true,
15 "baseUrl": ".",
16 "types": [
17 "webpack-env",
18 "mocha",
19 "chai"
20 ],
21 "paths": {
22 "@/*": [
23 "src/*"
24 ]
25 },
26 "lib": [
27 "esnext",
28 "dom",
29 "dom.iterable",
30 "scripthost"
31 ]
32 },
33 "include": [
34 "src/**/*.ts",
35 "src/**/*.tsx",
36 "src/**/*.vue",
37 "tests/**/*.ts",
38 "tests/**/*.tsx"
39 ],
40 "exclude": [
41 "node_modules"
42 ]
43 }