repositories
/
e-mobility-charging-stations-simulator.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
build(ui): fix test
[e-mobility-charging-stations-simulator.git]
/
ui
/
web
/
tsconfig.json
1
{
2
"extends": "@vue/tsconfig/tsconfig.json",
3
"compilerOptions": {
4
"allowImportingTsExtensions": false,
5
"experimentalDecorators": true,
6
"allowSyntheticDefaultImports": true,
7
"sourceMap": true,
8
"baseUrl": ".",
9
"types": [
10
"node",
11
"mocha",
12
"chai"
13
],
14
"paths": {
15
"@/*": [
16
"src/*"
17
]
18
},
19
"lib": [
20
"esnext",
21
"dom"
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
}