mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
8f0270c0cf
* Installs `cmake` and `protoc` build dependencies in the docker container. * Replaced deprecated TOML extension with its suggested alternative. Note: At least 16GB is required to build Deno, so ensure you use 'New with options' and select at least the 4-core/16GB machine type when starting in GitHub Codespaces.
26 lines
551 B
JSON
26 lines
551 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": [
|
|
"rust-lang.rust-analyzer",
|
|
"tamasfe.even-better-toml",
|
|
"vadimcn.vscode-lldb",
|
|
"mutantdino.resourcemonitor"
|
|
],
|
|
|
|
"postCreateCommand": "git submodule update --init",
|
|
|
|
"remoteUser": "vscode"
|
|
}
|