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
devcontainer.json
{
    "name": "Node.js",
    "build": {
        "dockerfile": "Dockerfile",
        "args": {
            "VARIANT": "14"
        }
    },
    "settings": {
        "terminal.integrated.defaultProfile.linux": "bash",
        "terminal.integrated.profiles.linux": {
            "bash": {
                "path": "/bin/bash",
                "icon": "terminal-bash",
            },
        },
    },
    "extensions": [
        "dbaeumer.vscode-eslint"
    ],
    "remoteUser": "node"
}
back to top