From d5fcb0851913b8c7655495962012a6623d9c9f35 Mon Sep 17 00:00:00 2001 From: Leonardo Oliveira Balsalobre Date: Mon, 4 Aug 2025 17:35:37 -0300 Subject: [PATCH] fix: add types node to fix minimatch issue --- examples/with-nestjs/packages/api/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/with-nestjs/packages/api/tsconfig.json b/examples/with-nestjs/packages/api/tsconfig.json index 77aa2ac994495..667e5d6bdd559 100644 --- a/examples/with-nestjs/packages/api/tsconfig.json +++ b/examples/with-nestjs/packages/api/tsconfig.json @@ -5,7 +5,8 @@ "baseUrl": "src", "esModuleInterop": true, "incremental": false, - "outDir": "dist" + "outDir": "dist", + "types": ["node"] }, "include": ["src"], "exclude": ["node_modules", "test", "dist", "**/*spec.ts"]