N64FlashcartMenu/.devcontainer/devcontainer.json
Robin Jones 4e3699cba7 Improve devcontainer
Co-Authored-By: Mateusz Faderewski <kontakt@mateuszfaderewski.pl>
2023-04-01 00:58:59 +01:00

26 lines
705 B
JSON

{
"name": "N64FlashcartMenu",
"build": {
"dockerfile": "Dockerfile"
},
"mounts": [
"source=n64flashcartmenu-bashhistory,target=/commandhistory,type=volume"
],
"postCreateCommand": "git submodule update && cd ./libdragon && ./build.sh",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.makefile-tools",
"ms-vsliveshare.vsliveshare-pack",
"streetsidesoftware.code-spell-checker"
],
"settings": {
"git.ignoredRepositories": [
"libdragon"
]
}
}
}
}