Christian Risi 15bae1af19 V0.7.0 Arroyo Toad
Fixed a design flaw where we supposed we could find keys before reading part of the message by adding support for a method to grab the key at runtime
2024-12-14 11:51:28 +00:00

47 lines
923 B
JSON

{
// Displayed name
"name": "Deno-Message-Utils",
// Image to be used
"build": {
"dockerfile": "DOCKERFILE"
},
// Customization
"customizations": {
"vscode": {
"extensions": [
"denoland.vscode-deno",
"fabiospampinato.vscode-highlight",
"fabiospampinato.vscode-todo-plus"
]
}
},
// Env in container
"containerEnv": {
},
// Mounts in container
"mounts": [
{
"source": "${localWorkspaceFolder}",
"target": "/workspace",
"type": "bind"
}
],
// The WorkspaceFolder inside container
"workspaceFolder": "/workspace",
// RunArgs
"runArgs": [
"--name",
"Typescript-MessageUtils",
"--env-file",
".environment/.env"
]
}