Files
MINGW-packages/.devcontainer/devcontainer.json
2024-04-14 15:30:39 +02:00

24 lines
728 B
JSON

{
"image": "ghcr.io/msys2/msys2-docker-devcontainer",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "MSYS2-UCRT64",
"terminal.integrated.profiles.linux": {
"MSYS2-UCRT64": {
"path": "msys2",
"env": {
"MSYSTEM": "UCRT64"
}
},
"MSYS2-CLANG64": {
"path": "msys2",
"env": {
"MSYSTEM": "CLANG64"
}
}
}
}
}
}
}