https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 6cd3acc70de471e5a3beacd555ea2130f38faab5 authored by Ron Buckton on 17 November 2022, 23:34:21 UTC
Use IIFE to capture variable for transformed dynamic import
Tip revision: 6cd3acc
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 npx hereby configure-insiders && npx hereby LKG && npx hereby clean && npm pack .
back to top