From 43077a80e271a793c88f100874914ae6f3c515b5 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Tue, 7 Oct 2025 09:53:46 -0500 Subject: [PATCH] fix: update Dockerfile pnpm version and fix TypeScript config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Upgrade Dockerfile from pnpm 8.0.0 to 9.15.4 for lockfile compatibility - Add "types": [] to abacus-react tsconfig to prevent implicit @types includes - Fixes Docker build lockfile incompatibility - Fixes TypeScript error looking for @types/minimatch 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Dockerfile | 2 +- packages/abacus-react/tsconfig.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 68611d0b..0412da62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM node:18-alpine AS base RUN apk add --no-cache python3 py3-setuptools make g++ # Install pnpm and turbo -RUN npm install -g pnpm@8.0.0 turbo@1.10.0 +RUN npm install -g pnpm@9.15.4 turbo@1.10.0 WORKDIR /app diff --git a/packages/abacus-react/tsconfig.json b/packages/abacus-react/tsconfig.json index a7508758..9de3c074 100644 --- a/packages/abacus-react/tsconfig.json +++ b/packages/abacus-react/tsconfig.json @@ -16,7 +16,8 @@ "jsx": "react-jsx", "declaration": true, "outDir": "./dist", - "rootDir": "./src" + "rootDir": "./src", + "types": [] }, "include": [ "src/**/*"