From 8326c8e4a048ce2e0a1293af35fad7127bee27ca Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 18 Apr 2023 21:00:58 +0000 Subject: [PATCH] Created the tsconfig.json --- tsconfig.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..ac2cf7e --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "target": "es2016", + "module": "commonjs", + "baseUrl": "src", + "rootDir": "src", + "outDir": "dist", + "paths": { + "@utils/*": ["utils/*"], + "@models/*": ["models/*"], + "@controller/*": ["controller/*"], + "@middlewares/*": ["middlewares/*"] + }, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "skipLibCheck": true, + "typeRoots": ["./src/types/overrides"] + }, + "ts-node": { + "files": true + } +} \ No newline at end of file