building-and-verifying
Installation
SKILL.md
Building and Verifying Nango
Overview
Nango is a TypeScript monorepo using npm workspaces and TypeScript project references (no Turborepo/Nx). Build order matters — packages depend on each other via tsconfig.build.json references.
Quick Reference
| Command | Purpose | When to use |
|---|---|---|
npm run ts-build |
Full TypeScript build with project refs | After cross-package changes |
npx tsc -p packages/server/tsconfig.build.json --noEmit |
Type-check single package | Quick check during development |
npm run ts-clean && npm run ts-build |
Clean rebuild | When incremental build gives stale errors |
npm install |
Install deps + link workspaces | After changing dependencies or in fresh worktree |
All commands run from the repo root.