Barazo default frontend barazo.forum
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(docker): add --skipLibCheck for plugin frontend build (#203)

The plugin frontend tsc build in Docker fails because @types/react
isn't installed in the workspace context (it's a devDependency of
the plugins monorepo, not the workspace). Since we only need the
JS output for bundling, --skipLibCheck skips type validation.

authored by

Guido X Jansen and committed by
GitHub
2a378702 7c1e7b69

+1 -1
+1 -1
Dockerfile
··· 46 46 # Build lexicons and plugin frontend first (workspace dependencies), then Next.js 47 47 ENV NEXT_TELEMETRY_DISABLED=1 48 48 RUN pnpm --filter @singi-labs/lexicons build && \ 49 - cd barazo-plugins/packages/plugin-signatures && npx tsc -p tsconfig.frontend.json && cd /workspace && \ 49 + cd barazo-plugins/packages/plugin-signatures && npx tsc -p tsconfig.frontend.json --skipLibCheck && cd /workspace && \ 50 50 pnpm --filter @singi-labs/web build 51 51 52 52 # ---------------------------------------------------------------------------