From 2effac4158163f67328b3b298836853f7f45c96c Mon Sep 17 00:00:00 2001 From: Wuesteon Date: Wed, 10 Dec 2025 21:25:10 +0100 Subject: [PATCH] fix: add type-check script to @mana-core/nestjs-integration This ensures turbo runs type-check on the package before dependent packages, fixing CI failures where @picture/backend couldn't find the module's type declarations. --- packages/mana-core-nestjs-integration/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/mana-core-nestjs-integration/package.json b/packages/mana-core-nestjs-integration/package.json index 9db58f099..ed33d057d 100644 --- a/packages/mana-core-nestjs-integration/package.json +++ b/packages/mana-core-nestjs-integration/package.json @@ -25,7 +25,8 @@ "build": "tsc", "dev": "tsc --watch", "clean": "rm -rf dist", - "lint": "eslint ." + "lint": "eslint .", + "type-check": "tsc --noEmit" }, "dependencies": { "@nestjs/common": "^10.0.0 || ^11.0.0",