test: add clear cache implementation example in ocpp2 server
[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.dom.json"],
4 "compilerOptions": {
5 "experimentalDecorators": true,
6 "allowSyntheticDefaultImports": true,
7 "sourceMap": true,
8 "composite": true,
9 "baseUrl": "./",
10 "types": ["node", "jsdom"],
11 "paths": {
12 "@/*": ["./src/*"]
13 }
14 },
15 "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
16 "exclude": ["node_modules"]
17 }