Add @guards on the tsconfig.json

This commit is contained in:
ExostFlash 2025-06-02 10:36:29 +02:00
parent f4e72e80e4
commit b787a13669
2 changed files with 2 additions and 1 deletions

View file

@ -1,7 +1,7 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { authGuard } from './guards/auth.guard';
import { authGuard } from '@guards/auth.guard';
import { LoginComponent } from './components/essentials/login/login.component';
import { HomeComponent } from './components/home/home.component';

View file

@ -21,6 +21,7 @@
"paths": {
"@interfaces/*": ["app/interfaces/*"],
"@services/*": ["app/services/*"],
"@guards/*": ["app/guards/*"],
"@utils/*": ["app/utils/*"]
}
},