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