https://github.com/Microsoft/TypeScript
Raw File
Tip revision: b179c7c959a243ec4a1da30c095fb202578fe2cf authored by Sheetal Nandi on 10 December 2022, 04:15:31 UTC
Dont store originalPath as separate, instead store originalPath || resolvedFileName and resolve the symlinks on read
Tip revision: b179c7c
Dockerfile
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.154.0/containers/javascript-node/.devcontainer/base.Dockerfile

# [Choice] Node.js version: 14, 12, 10
ARG VARIANT="14-buster"
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}

RUN sudo -u node npm install -g hereby
back to top