create http client and base service

This commit is contained in:
Fran Jurmanović
2021-05-28 19:08:11 +02:00
parent 888c76829c
commit e0756282b6
10 changed files with 186 additions and 1 deletions

View File

@@ -8,8 +8,30 @@
"es2016"
],
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"common*": [
"src/common*"
],
"core*": [
"src/core*"
],
"components*": [
"src/components*"
],
"configs*": [
"src/configs*"
],
"pages*": [
"src/pages*"
],
"@src*": [
"src*"
],
}
}
}