Path mapping & deps fix & bundler changed to tsup

This commit is contained in:
Judson Cairo
2024-08-11 20:47:17 -03:00
parent feb7b795e9
commit 32e58debc6
90 changed files with 645 additions and 667 deletions

View File

@@ -1,4 +1,4 @@
import { HttpStatus } from '../api/routes/index.router';
import { HttpStatus } from '@api/routes/index.router';
export class BadRequestException {
constructor(...objectError: any[]) {

View File

@@ -1,4 +1,4 @@
import { HttpStatus } from '../api/routes/index.router';
import { HttpStatus } from '@api/routes/index.router';
export class UnauthorizedException {
constructor(...objectError: any[]) {

View File

@@ -1,4 +1,4 @@
import { HttpStatus } from '../api/routes/index.router';
import { HttpStatus } from '@api/routes/index.router';
export class ForbiddenException {
constructor(...objectError: any[]) {

View File

@@ -1,4 +1,4 @@
import { HttpStatus } from '../api/routes/index.router';
import { HttpStatus } from '@api/routes/index.router';
export class NotFoundException {
constructor(...objectError: any[]) {

View File

@@ -1,4 +1,4 @@
import { HttpStatus } from '../api/routes/index.router';
import { HttpStatus } from '@api/routes/index.router';
export class InternalServerErrorException {
constructor(...objectError: any[]) {