From 9045a7315000698914a12c2b0089b65669ac6f28 Mon Sep 17 00:00:00 2001 From: recai42 <132782853+recai42@users.noreply.github.com> Date: Thu, 6 Jun 2024 15:31:32 +0300 Subject: [PATCH] Create devcontainer.json --- .devcontainer/devcontainer.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000000..0eb15c1ac5dd --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +"features": { + "ghcr.io/devcontainers/features/common-utils:1": {}, + "ghcr.io/FuelLabs/devcontainer-features/fuelup:1.0.1": {}, +} + +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + "ghcr.io/devcontainers/features/common-utils:1": {}, + "ghcr.io/FuelLabs/devcontainer-features/fuelup:1.0.1": {}, + "ghcr.io/devcontainers/features/rust:1": {}, + }, + "customizations": { + "vscode": { + "extensions": [ + "fuellabs.sway-vscode-plugin", + "rust-lang.rust-analyzer" + ] + } + } +}