diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..c5b9416 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,14 @@ +{ + "image": "mcr.microsoft.com/devcontainers/typescript-node", + "customizations": { + "vscode": { + "extensions": [ + "esbenp.prettier-vscode", + "christian-kohler.npm-intellisense", + "dbaeumer.vscode-eslint" + ] + } + }, + "postCreateCommand": "npm install", + "forwardPorts": [8000] +}