We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef94ffd commit b72e686Copy full SHA for b72e686
.devcontainer/devcontainer.json
@@ -0,0 +1,8 @@
1
+{
2
+ "postCreateCommand": "/workspaces/wasm-git/.devcontainer/post-create.sh",
3
+ "customizations": {
4
+ "vscode": {
5
+ "extensions": []
6
+ }
7
8
+}
.devcontainer/post-create.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+npm install
+sh setup.sh
+git clone https://github.com/emscripten-core/emsdk.git
+cd emsdk
+git pull
9
+./emsdk install latest
10
+./emsdk activate latest
11
+cd ..
0 commit comments