From 748f0fc81f7080e8af63c0912bd4e7d602d22efc Mon Sep 17 00:00:00 2001 From: Alexis Faizeau Date: Wed, 13 Apr 2022 15:22:33 +0200 Subject: [PATCH] Remove paths configuration from uploader tsconfig --- uploader/tsconfig.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/uploader/tsconfig.json b/uploader/tsconfig.json index 22bfef91..5f6d4c8e 100644 --- a/uploader/tsconfig.json +++ b/uploader/tsconfig.json @@ -40,17 +40,17 @@ /* 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. */ - "paths": { - "_Controller/*": [ - "src/Controller/*" - ], - "_Model/*": [ - "src/Model/*" - ], - "_Enum/*": [ - "src/Enum/*" - ] - }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ + // "paths": { + // "_Controller/*": [ + // "src/Controller/*" + // ], + // "_Model/*": [ + // "src/Model/*" + // ], + // "_Enum/*": [ + // "src/Enum/*" + // ] + // }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ // "typeRoots": [], /* List of folders to include type definitions from. */ // "types": [], /* Type declaration files to be included in compilation. */