Revision b24b05b5af693b3872143533f60755acf2a57db0 authored by TypeScript Bot on 01 June 2022, 17:43:06 UTC, committed by GitHub on 01 June 2022, 17:43:06 UTC
Component commits:
79957c179e Fix index fallback of CJS package from ESM-mode import when `main` is present but does not resolve

Co-authored-by: Andrew Branch <andrew@wheream.io>
1 parent 6e0328a
Raw File
Dockerfile
# We use this dockerfile to build a packed tarfile which we import in our `docker` tests
FROM node:current
COPY . /typescript
WORKDIR /typescript
RUN npm ci
RUN npm i -g gulp-cli
RUN gulp configure-insiders && gulp LKG && gulp clean && npm pack .
back to top