N64FlashcartMenu/.devcontainer/devcontainer.json

26 lines
705 B
JSON
Raw Normal View History

2023-02-27 00:14:51 +01:00
{
"name": "N64FlashcartMenu",
"build": {
"dockerfile": "Dockerfile"
},
2023-02-27 01:48:22 +01:00
"mounts": [
2023-02-28 18:39:39 +01:00
"source=n64flashcartmenu-bashhistory,target=/commandhistory,type=volume"
2023-02-27 01:48:22 +01:00
],
"postCreateCommand": "git submodule update && cd ./libdragon && ./build.sh",
2023-02-27 01:48:22 +01:00
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.makefile-tools",
2023-02-27 01:48:22 +01:00
"ms-vsliveshare.vsliveshare-pack",
"streetsidesoftware.code-spell-checker"
],
"settings": {
"git.ignoredRepositories": [
"libdragon"
]
}
2023-02-27 01:48:22 +01:00
}
}
2023-02-27 00:14:51 +01:00
}