mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
74d523e924
This allows users to use Codespaces and VS Code Remote Containers easily.
26 lines
544 B
JSON
26 lines
544 B
JSON
{
|
|
"name": "Rust",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"],
|
|
|
|
"settings": {
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
// VS Code don't watch files under ./target
|
|
"files.watcherExclude": {
|
|
"**/target/**": true
|
|
}
|
|
},
|
|
|
|
"extensions": [
|
|
"matklad.rust-analyzer",
|
|
"bungcip.better-toml",
|
|
"vadimcn.vscode-lldb",
|
|
"mutantdino.resourcemonitor"
|
|
],
|
|
|
|
"postCreateCommand": "git submodule update --init",
|
|
|
|
"remoteUser": "vscode"
|
|
}
|