fix: use tsup instead of tsc for SDK build in inspector Dockerfile

This commit is contained in:
Nathan Flurry 2026-01-27 19:29:15 -08:00
parent f67b6fc4b1
commit f05389307a

View file

@ -13,8 +13,8 @@ RUN pnpm install --filter @sandbox-agent/inspector...
# Copy SDK source (with pre-generated types)
COPY sdks/typescript ./sdks/typescript
# Build SDK (just tsc, skip generate since types are pre-generated)
RUN cd sdks/typescript && pnpm exec tsc -p tsconfig.json
# Build SDK (just tsup, skip generate since types are pre-generated)
RUN cd sdks/typescript && pnpm exec tsup
# Copy inspector source
COPY frontend/packages/inspector ./frontend/packages/inspector