https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 69ee8e378552bfe67b045346597a6f6ecc05bf25 authored by Ron Buckton on 22 August 2022, 15:03:34 UTC
Make canHaveModifiers/Decorators public
Tip revision: 69ee8e3
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