File: devcontainer.json

package info (click to toggle)
node-xterm 5.3.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,372 kB
  • sloc: javascript: 2,388; sh: 344; python: 59; makefile: 15
file content (20 lines) | stat: -rw-r--r-- 441 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "name": "xterm.js",
  "image": "mcr.microsoft.com/devcontainers/typescript-node:0-18-buster",
  "features": {
    "ghcr.io/devcontainers/features/node:1": {} // yarn
  },
  "forwardPorts": [
    3000
  ],
  "postCreateCommand": "yarn install",
  "customizations": {
    "vscode": {
      "extensions": [
        "dbaeumer.vscode-eslint",
        "editorconfig.editorconfig",
        "hbenl.vscode-mocha-test-adapter"
      ]
    }
  }
}