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",