From 76b21283206dbeb9d243a7a7faa340ae8b78b728 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 15 Jan 2023 20:33:47 +0100 Subject: [PATCH] Updated the paths & type roots --- tsconfig.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 7a04d7e..ac2cf7e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,10 +7,17 @@ "outDir": "dist", "paths": { "@utils/*": ["utils/*"], + "@models/*": ["models/*"], + "@controller/*": ["controller/*"], + "@middlewares/*": ["middlewares/*"] }, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, - "skipLibCheck": true + "skipLibCheck": true, + "typeRoots": ["./src/types/overrides"] + }, + "ts-node": { + "files": true } } \ No newline at end of file