https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 549b5429d4837344e8c99657109bb6538fd2dbb5 authored by Daniel Rosenwasser on 23 September 2022, 22:50:43 UTC
Use paths in package.json 'files' array that work with npm 6 and later.
Tip revision: 549b542
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