s3si.ts/.devcontainer/devcontainer.json

30 lines
770 B
JSON
Raw Permalink Normal View History

2022-11-08 07:23:15 -05:00
{
"name": "Deno",
"build": {
"dockerfile": "Dockerfile"
},
2022-11-08 07:23:15 -05:00
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
// Enables the project as a Deno project
"deno.enable": true,
// Enables Deno linting for the project
"deno.lint": true,
// Sets Deno as the default formatter for the project
"editor.defaultFormatter": "denoland.vscode-deno"
},
2022-11-08 07:23:15 -05:00
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"denoland.vscode-deno"
]
}
},
"remoteUser": "vscode"
}