From fea73e9769b1db4c67f943f3e330d0e31673f1b7 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Mon, 11 Oct 2021 15:27:29 +0200 Subject: [PATCH] do not define the default baseUrl explicitly --- backend/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index 15eb704ba..73e00a1a0 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -45,7 +45,7 @@ /* Module Resolution Options */ // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ - "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ + // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ "paths": { /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ "@entity/*": ["../database/entity/*"] },