Remove paths configuration from uploader tsconfig

This commit is contained in:
Alexis Faizeau 2022-04-13 15:22:33 +02:00
parent 6920836e47
commit 748f0fc81f

View File

@ -40,17 +40,17 @@
/* Module Resolution Options */ /* Module Resolution Options */
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ "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": { // "paths": {
"_Controller/*": [ // "_Controller/*": [
"src/Controller/*" // "src/Controller/*"
], // ],
"_Model/*": [ // "_Model/*": [
"src/Model/*" // "src/Model/*"
], // ],
"_Enum/*": [ // "_Enum/*": [
"src/Enum/*" // "src/Enum/*"
] // ]
}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ // }, /* 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. */ // "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. */ // "typeRoots": [], /* List of folders to include type definitions from. */
// "types": [], /* Type declaration files to be included in compilation. */ // "types": [], /* Type declaration files to be included in compilation. */