frontAnswerer/tsconfig.extend.json

26 lines
499 B
JSON
Raw Normal View History

2023-12-16 14:55:56 +00:00
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@/*": [
"./*"
],
"@ui_kit/*": [
"./ui_kit/*"
],
"@icons/*": [
"./assets/icons/*"
],
"@root/*": [
"./stores/*"
],
"@api/*": [
"./api/*"
],
"@model/*": [
"./model/*"
]
}
}
}