fix: update Dockerfile pnpm version and fix TypeScript config

- 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 <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-10-07 09:53:46 -05:00
parent 1f527581b8
commit 43077a80e2
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -16,7 +16,8 @@
"jsx": "react-jsx",
"declaration": true,
"outDir": "./dist",
"rootDir": "./src"
"rootDir": "./src",
"types": []
},
"include": [
"src/**/*"