From 7a8b6c596b6878003b6c411c4097baa3dbc8471b Mon Sep 17 00:00:00 2001 From: William Te Stroete Date: Tue, 2 Sep 2025 20:15:57 -0500 Subject: [PATCH] ebay --- .devcontainer/devcontainer.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..552a954 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,26 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": {} +} +{ + "tags": { + "allowUnknownTags": false + }, + "source": { + "include": "./src", + "includePattern": "\\.js$", + "excludePattern": "(node_modules/|docs)" + }, + "plugins": ["plugins/markdown"], + "opts": { + "template": "node_modules/docdash", + "encoding": "utf8", + "destination": "docs/", + "recurse": true, + "verbose": true + }, + "templates": { + "cleverLinks": false, + "monospaceLinks": false + } +}