frontPanel/tsconfig.extend.json

26 lines
510 B
JSON
Raw Normal View History

2023-03-03 20:07:19 +00:00
{
2023-11-02 16:45:28 +00:00
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@ui_kit/*": [
"./ui_kit/*"
],
"@icons/*": [
"./assets/icons/*"
],
"@root/*": [
"./stores/*"
],
"@api/*": [
"./api/*"
2023-11-13 18:04:51 +00:00
],
"@model/*": [
"./model/*"
],
"@utils/*": [
"./utils/*"
2023-11-02 16:45:28 +00:00
]
}
2023-03-03 20:07:19 +00:00
}
2023-11-02 16:45:28 +00:00
}