1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(devcontainer): moved settings to customizations/vscode (#21512)

The current configuration use the deprecated top-level `settings` and
`extensions` keys. Those are now under `customizations/vscode`.
This commit is contained in:
Julien Cayzac 2023-12-19 21:29:39 +09:00 committed by GitHub
parent 68241234fa
commit aefa205f63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,23 +4,23 @@
"dockerfile": "Dockerfile" "dockerfile": "Dockerfile"
}, },
"runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"], "runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"],
"customizations": {
"vscode": {
"settings": { "settings": {
"lldb.executable": "/usr/bin/lldb", "lldb.executable": "/usr/bin/lldb",
// VS Code don't watch files under ./target // VS Code don't watch files under ./target
"files.watcherExclude": { "files.watcherExclude": {
"**/target/**": true "**/target/**": true
}
}, },
"extensions": [ "extensions": [
"rust-lang.rust-analyzer", "rust-lang.rust-analyzer",
"tamasfe.even-better-toml", "tamasfe.even-better-toml",
"vadimcn.vscode-lldb", "vadimcn.vscode-lldb",
"mutantdino.resourcemonitor" "mutantdino.resourcemonitor"
], ]
}
}
},
"postCreateCommand": "git submodule update --init", "postCreateCommand": "git submodule update --init",
"remoteUser": "vscode" "remoteUser": "vscode"
} }