forked from cloudflare/workerd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
28 lines (28 loc) · 846 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
28 lines (28 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "C++: Workerd",
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"BazelBuild.vscode-bazel",
"eamodio.gitlens",
"streetsidesoftware.code-spell-checker",
"llvm-vs-code-extensions.vscode-clangd",
"ms-vscode.cpptools",
"abronan.capnproto-syntax",
"DavidAnson.vscode-markdownlint"
],
"settings": {
// The Microsoft C/C++ extension has IntelliSense support that is not compatible with the clangd extension.
"C_Cpp.intelliSenseEngine": "disabled",
"C_Cpp.default.cppStandard": "c++20"
}
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}