Revision a21024dbe7e79dc018e4193f27ecb66e0465b638 authored by Nathan Shively-Sanders on 14 July 2022, 20:22:14 UTC, committed by GitHub on 14 July 2022, 20:22:14 UTC
It doesn't do anything anymore. I'm not sure what it used to do; it's
been there basically forever.
1 parent bb913f8
Raw File
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