Revision 2d96a163d1a666e7b156c5597f3419ff8b560864 authored by Sheetal Nandi on 01 October 2019, 15:28:08 UTC, committed by GitHub on 01 October 2019, 15:28:08 UTC
Fix issue when types installed after watch/editor is opened for auto type reference that is for global types not being detected
2 parent s 7be7cba + 1a614a2
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 install
RUN npm i -g gulp-cli
RUN gulp configure-insiders && gulp LKG && gulp clean && npm pack .
back to top