refactor: format configuration files
[e-mobility-charging-stations-simulator.git] / ui / web / tsconfig.json
1 {
2 "$schema": "https://json.schemastore.org/tsconfig",
3 "extends": ["@tsconfig/node20/tsconfig.json", "@vue/tsconfig/tsconfig.json"],
4 "compilerOptions": {
5 "experimentalDecorators": true,
6 "allowSyntheticDefaultImports": true,
7 "sourceMap": true,
8 "baseUrl": ".",
9 "types": ["node", "mocha", "chai"],
10 "paths": {
11 "@/*": ["src/*"]
12 },
13 "lib": ["esnext", "dom"]
14 },
15 "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
16 "exclude": ["node_modules"]
17 }