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:
parent
1f527581b8
commit
43077a80e2
|
|
@ -5,7 +5,7 @@ FROM node:18-alpine AS base
|
||||||
RUN apk add --no-cache python3 py3-setuptools make g++
|
RUN apk add --no-cache python3 py3-setuptools make g++
|
||||||
|
|
||||||
# Install pnpm and turbo
|
# 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
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,8 @@
|
||||||
"jsx": "react-jsx",
|
"jsx": "react-jsx",
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src"
|
"rootDir": "./src",
|
||||||
|
"types": []
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*"
|
"src/**/*"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue