From c554f932239bf94b1f9363582ba0bcbc050abf91 Mon Sep 17 00:00:00 2001 From: Tristan F Date: Sun, 8 Jan 2023 01:07:35 -0500 Subject: [PATCH] chore: add .devcontainer config (#2700) Co-authored-by: Tony Brix Closes https://github.com/markedjs/marked/issues/2699 --- .devcontainer/devcontainer.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..d5fd9c58 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,18 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node +{ + "name": "marked", + // We're using node 14 for development, to keep close to the engine compatibility that marked.js uses. + "image": "mcr.microsoft.com/devcontainers/javascript-node:0-14", + "postCreateCommand": "npm install", + + // Configure tool-specific properties. + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + "extensions": [ + "dbaeumeur.vscode-eslint" + ] + } + } +}