From d21f0a0dea51d4c50841f76112d25adb4cdf7361 Mon Sep 17 00:00:00 2001 From: Vincenzo Chianese Date: Thu, 30 Nov 2023 08:56:34 -0700 Subject: [PATCH] prefer node 18 --- .devcontainer/devcontainer.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 01f26c0d..923a25e7 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,12 +5,16 @@ "build": { "dockerfile": "Dockerfile", // Update 'VARIANT' to pick a Node version: 12, 14, 16 - "args": { "VARIANT": "16" } + "args": { + "VARIANT": "16" + } }, // Set *default* container specific settings.json values on container create. "settings": {}, // Add the IDs of extensions you want installed when the container is created. - "extensions": ["dbaeumer.vscode-eslint"], + "extensions": [ + "dbaeumer.vscode-eslint" + ], // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], // Use 'postCreateCommand' to run commands after the container is created.