frontAnswerer/tsconfig.extend.json
2023-12-16 17:55:56 +03:00

26 lines
499 B
JSON

{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@/*": [
"./*"
],
"@ui_kit/*": [
"./ui_kit/*"
],
"@icons/*": [
"./assets/icons/*"
],
"@root/*": [
"./stores/*"
],
"@api/*": [
"./api/*"
],
"@model/*": [
"./model/*"
]
}
}
}