Local Development

Build and integrate the library locally without a published npm package.

Build

cd angularforge-libs/command-palette
npm install
npm run build   # ng-packagr → ./dist

Resolve from Source (tsconfig paths)

For the fastest inner loop, point TypeScript directly at the library source without building:

tsconfig.app.json
{
  "compilerOptions": {
    "paths": {
      "@angularforge/command-palette": [
        "../angularforge-libs/command-palette/src/public-api.ts"
      ]
    }
  }
}