props/.devcontainer/devcontainer.json

31 lines
740 B
JSON
Raw Permalink Normal View History

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Debian",
"build": {
2024-07-20 01:50:47 +00:00
"context": "..",
"dockerfile": "Dockerfile"
2024-07-20 01:50:47 +00:00
},
2024-07-20 01:50:47 +00:00
"customizations": {
"vscode": {
"extensions": [
"ms-dotnettools.vscode-dotnet-runtime",
"svelte.svelte-vscode",
"syler.sass-indented",
"dbaeumer.vscode-eslint",
"ms-dotnettools.csharp"
],
"settings": {
"python.defaultInterpreterPath": "/opt/conda/bin/python",
"dotnet.dotnetPath": "/opt/conda/lib/dotnet/",
"omnisharp.dotNetCliPaths": [
"/opt/conda/lib/dotnet/dotnet"
]
}
}
2024-07-20 05:07:59 +00:00
},
"postCreateCommand": "bash -i -c 'conda init'"
2024-07-20 01:50:47 +00:00
}