rustdesk/vdi/host/.devcontainer/devcontainer.json

28 lines
853 B
JSON
Raw Normal View History

2023-02-25 18:39:27 +08:00
{
"name": "rustdesk",
"build": {
"dockerfile": "./Dockerfile",
"context": "."
},
2023-02-26 18:49:07 +08:00
"workspaceMount": "source=${localWorkspaceFolder}/../..,target=/home/vscode/rustdesk,type=bind,consistency=cache",
"workspaceFolder": "/home/vscode/rustdesk/vdi/host",
2023-02-25 18:39:27 +08:00
"customizations": {
"vscode": {
"extensions": [
"vadimcn.vscode-lldb",
"mutantdino.resourcemonitor",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"serayuzgur.crates",
"mhutchie.git-graph",
2023-02-26 18:49:07 +08:00
"formulahendry.terminal",
2023-02-25 18:39:27 +08:00
"eamodio.gitlens"
],
"settings": {
"files.watcherExclude": {
"**/target/**": true
}
}
}
}
}