devcontainer.json 590 B

123456789101112131415161718
  1. // For format details, see https://aka.ms/devcontainer.json. For config options, see the
  2. // README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node
  3. {
  4. "name": "marked",
  5. // We're using node 14 for development, to keep close to the engine compatibility that marked.js uses.
  6. "image": "mcr.microsoft.com/devcontainers/javascript-node:0-14",
  7. "postCreateCommand": "npm install",
  8. // Configure tool-specific properties.
  9. "customizations": {
  10. // Configure properties specific to VS Code.
  11. "vscode": {
  12. "extensions": [
  13. "dbaeumeur.vscode-eslint"
  14. ]
  15. }
  16. }
  17. }