From 52dc81aa73ef64416f438d245153d3011d37d941 Mon Sep 17 00:00:00 2001 From: Alexandros Tzimas Date: Fri, 31 Jan 2025 11:30:56 +0200 Subject: [PATCH] Remove unused @static path in server tsconfig --- portal/server/tsconfig.json | 1 - portal/worker/tsconfig.json | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/portal/server/tsconfig.json b/portal/server/tsconfig.json index eb3c3c47..20e069db 100644 --- a/portal/server/tsconfig.json +++ b/portal/server/tsconfig.json @@ -19,7 +19,6 @@ ], "baseUrl": "./", "paths": { - "@static/*": ["../common/static/*"], "@lib/*": ["../common/lib/*"] }, "types": ["../common/lib/custom.d.ts"] diff --git a/portal/worker/tsconfig.json b/portal/worker/tsconfig.json index 519c62c6..4cc08cc4 100644 --- a/portal/worker/tsconfig.json +++ b/portal/worker/tsconfig.json @@ -11,7 +11,7 @@ ], "baseUrl": "./", "paths": { - "@static/*": ["../common/static/*"], + "@static/*": ["static/*"], "@lib/*": ["../common/lib/*"] } }, @@ -22,7 +22,7 @@ "include": [ "src/**/*", "../common/**/*" - ], +, "static", "static" ], "exclude": [ "node_modules", "dist",