From ed4536fa91020dd2b5940387f15f60361b3aed32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Thu, 28 Dec 2023 19:27:31 -0500 Subject: [PATCH] chore(api): remove path aliases from tsconfig in favour of the nuxt aliases --- server/tsconfig.json | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/server/tsconfig.json b/server/tsconfig.json index cb1c48f..78394c7 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -2,17 +2,6 @@ "extends": "../.nuxt/tsconfig.server.json", "compilerOptions": { "allowJs": true, - "outDir": "../out", - "paths": { - "@models/*": ["../models/*"], - "@client/*": ["./lib/client/*"], - "@server/*": ["../lib/server/*"], - "@models/**": ["../models/**"], - "@client/**": ["../lib/client/**"], - "@server/**": ["../lib/server/**"], - "@functions": ["../lib/functions.ts"], - "@dbconfig": ["../lib/dbconfig.ts"], - "@constants": ["../lib/constants.ts"] - } + "outDir": "../out" } }