From 7e2c5eb5291001f25cf30af91c951add3778ba33 Mon Sep 17 00:00:00 2001 From: Dennis Postma Date: Fri, 7 Feb 2025 02:03:12 +0100 Subject: [PATCH] =?UTF-8?q?=C2=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5cd9ed0..0364086 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,7 +20,7 @@ // Output "outDir": "./dist", - "rootDir": "./src", + "rootDir": ".", "baseUrl": ".", "paths": { @@ -46,6 +46,13 @@ "experimentalDecorators": true, "emitDecoratorMetadata": true, }, - "include": ["**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] + "include": [ + "src/**/*.ts", + "migrations/**/*.ts", // Explicitly include migrations + "**/*.tsx" + ], + "exclude": [ + "node_modules", + "dist" + ] } \ No newline at end of file