chat_proto/nim/.devcontainer/devcontainer.json

14 lines
399 B
JSON
Raw Normal View History

2025-06-30 17:52:54 -07:00
{
2025-07-11 13:49:33 -07:00
"name": "WapTypes",
2025-06-30 17:52:54 -07:00
"image": "nimlang/nim",
"customizations": {
"vscode": {
"extensions": [
"NimLang.nimlang", //Nim lang extension
"vadimcn.vscode-lldb", //for Nim debug
"streetsidesoftware.code-spell-checker" //spell checker
]
}
},
"postCreateCommand": "./.devcontainer/post_create.sh"
}