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