Revision abfd53750377e84bc5836d2453c623492f0cc22d authored by Wesley Wigham on 27 October 2021, 19:30:06 UTC, committed by GitHub on 27 October 2021, 19:30:06 UTC
* Support resolveJsonModule in new module modes

* Formatting feedback
1 parent 8a68c86
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