From 9e95b431c28045e2d9664bc6ad9a010e0a8ed747 Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Fri, 26 Jan 2024 05:06:25 +0000 Subject: [PATCH] npm run all --- .devcontainer/devcontainer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 63d9cb0..4a4e50b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,13 +6,13 @@ "dockerfile": "Dockerfile", // Update 'VARIANT' to pick a Node version: 10, 12, 14 "args": { - "VARIANT": "14" - } + "VARIANT": "20", + }, }, // Set *default* container specific settings.json values on container create. "settings": { - "terminal.integrated.shell.linux": "/bin/bash" + "terminal.integrated.shell.linux": "/bin/bash", }, // Add the IDs of extensions you want installed when the container is created. @@ -25,5 +25,5 @@ "postCreateCommand": "npm install", // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "node" + "remoteUser": "node", }