build(ci): fix sonar-scanner, take 2
[e-mobility-charging-stations-simulator.git] / ui / web / tsconfig.json
1 {
2 "$schema": "https://json.schemastore.org/tsconfig",
3 "extends": [
4 "@tsconfig/node20/tsconfig.json",
5 "@vue/tsconfig/tsconfig.json"
6 ],
7 "compilerOptions": {
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 }