From 2e71eba08454ed03ddd51cb693bd6bdf1fd4c1d0 Mon Sep 17 00:00:00 2001 From: Lilith Date: Fri, 9 Jan 2026 20:10:38 -0800 Subject: [PATCH] =?UTF-8?q?fix(@queue):=20=F0=9F=90=9B=20resolve=20duplica?= =?UTF-8?q?te=20exclude=20directives=20in=20multiple=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bull-adapter/tsconfig.json | 2 +- core/tsconfig.json | 2 +- ml/tsconfig.json | 2 +- nestjs/tsconfig.json | 2 +- reporting/tsconfig.json | 2 +- tsconfig.base.json | 1 + 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/bull-adapter/tsconfig.json b/bull-adapter/tsconfig.json index f677f8d..1e02a57 100644 --- a/bull-adapter/tsconfig.json +++ b/bull-adapter/tsconfig.json @@ -5,5 +5,5 @@ "rootDir": "./src" }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"] } diff --git a/core/tsconfig.json b/core/tsconfig.json index f677f8d..1e02a57 100644 --- a/core/tsconfig.json +++ b/core/tsconfig.json @@ -5,5 +5,5 @@ "rootDir": "./src" }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"] } diff --git a/ml/tsconfig.json b/ml/tsconfig.json index f677f8d..1e02a57 100644 --- a/ml/tsconfig.json +++ b/ml/tsconfig.json @@ -5,5 +5,5 @@ "rootDir": "./src" }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"] } diff --git a/nestjs/tsconfig.json b/nestjs/tsconfig.json index f677f8d..1e02a57 100644 --- a/nestjs/tsconfig.json +++ b/nestjs/tsconfig.json @@ -5,5 +5,5 @@ "rootDir": "./src" }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"] } diff --git a/reporting/tsconfig.json b/reporting/tsconfig.json index c8ca278..a464264 100644 --- a/reporting/tsconfig.json +++ b/reporting/tsconfig.json @@ -6,5 +6,5 @@ "rootDir": "./src" }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"] } diff --git a/tsconfig.base.json b/tsconfig.base.json index 3320fe6..8937312 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -3,6 +3,7 @@ "compilerOptions": { "target": "ES2022", "lib": ["ES2022"], + "types": ["node"], "module": "commonjs", "moduleResolution": "node",