diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..8d42ffdea --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,16 @@ +# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.191.1/containers/javascript-node/.devcontainer/base.Dockerfile + +# [Choice] Node.js version: 16, 14, 12 +ARG VARIANT="16-buster" +FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} + +# [Optional] Uncomment this section to install additional OS packages. +# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ +# && apt-get -y install --no-install-recommends + +# [Optional] Uncomment if you want to install an additional version of node using nvm +# ARG EXTRA_NODE_VERSION=10 +# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}" + +# [Optional] Uncomment if you want to install more global node modules +# RUN su node -c "npm install -g " diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..610b673b8 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,29 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: +// https://github.com/microsoft/vscode-dev-containers/tree/v0.191.1/containers/javascript-node +{ + "name": "Node.js", + "build": { + "dockerfile": "Dockerfile", + // Update 'VARIANT' to pick a Node version: 12, 14, 16 + "args": { + "VARIANT": "12" + } + }, + // Set *default* container specific settings.json values on container create. + // Add the IDs of extensions you want installed when the container is created. + "extensions": [ + "esbenp.prettier-vscode", + "ms-vscode.vscode-typescript-tslint-plugin" + ], + "settings": { + "editor.formatOnSave": false, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "prettier.jsxSingleQuote": true, + "prettier.singleQuote": true + }, + + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "npm ci && npm run init && npm run build", + // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. + "remoteUser": "node" +} \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 903813d89..6bc77f479 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -5,7 +5,9 @@ // List of extensions which should be recommended for users of this workspace. "recommendations": [ "esbenp.prettier-vscode", - "ms-vscode.vscode-typescript-tslint-plugin" + "ms-vscode.vscode-typescript-tslint-plugin", + "ms-vscode-remote.remote-containers" + ], // List of extensions recommended by VS Code that should not be recommended for users of this workspace. "unwantedRecommendations": []