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.
This commit is contained in:
Wuesteon 2025-12-10 21:25:10 +01:00
parent 78b5e6d226
commit 2effac4158

View file

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