From 4ec6a749600969d63527f67cf619496473dbb14c Mon Sep 17 00:00:00 2001 From: falsepopsky Date: Thu, 19 Oct 2023 21:09:32 -0300 Subject: [PATCH] feat: add devcontainer --- .devcontainer/devcontainer.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..8eb7b8a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,25 @@ +{ + "name": "thetvdb Dev Container", + "image": "mcr.microsoft.com/devcontainers/base:jammy", + "features": { + "ghcr.io/devcontainers/features/node:1": { + "nodeGypDependencies": true, + "version": "18.18.2", + "nvmVersion": "latest" + } + }, + "customizations": { + "vscode": { + "extensions": [ + "dbaeumer.vscode-eslint", + "esbenp.prettier-vscode", + "editorconfig.editorconfig", + "orta.vscode-jest", + "pkief.material-icon-theme", + "github.vscode-github-actions", + "github.vscode-pull-request-github" + ] + } + }, + "postCreateCommand": "corepack enable && pnpm install" +}