-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevcontainer.json
29 lines (29 loc) · 1.16 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.117.1/containers/codespaces-linux
{
"name": "Deno",
"dockerFile": "Dockerfile",
"mounts": [
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
],
"extensions": [
"ms-vsonline.vsonline",
"GitHub.vscode-pull-request-github",
"MS-vsliveshare.vsliveshare",
"VisualStudioExptTeam.vscodeintellicode",
"denoland.vscode-deno"
],
"settings": {
"typescript.enablePromptUseWorkspaceTsdk": false,
"terminal.integrated.shell.linux": "/bin/zsh",
"deno.enable": true
},
"postCreateCommand": "deno cache examples/**/*.ts blueprint/**/*.ts cmd/**/*.ts mod.ts"
// Add the IDs of extensions you want installed when the container is created.
// Set *default* container specific settings.json values on container create.
// "settings": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a"
}