File: devcontainer.json

package info (click to toggle)
node-ts-loader 9.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,888 kB
  • sloc: javascript: 74,612; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 1,080 bytes parent folder | download | duplicates (3)
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
30
31
32
// 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.122.1/containers/typescript-node-14
{
	"name": "ts-loader devcontainer",
	"dockerFile": "Dockerfile",

	// Set *default* container specific settings.json values on container create.
	"settings": { 
		"terminal.integrated.profiles.linux": {
			"zsh": {
				"path": "/bin/zsh",
				"icon": "terminal-bash"
			}
		},
		"terminal.integrated.defaultProfile.linux": "zsh",
	},

	// Add the IDs of extensions you want installed when the container is created.
	"extensions": [
		"dbaeumer.vscode-eslint",
		"esbenp.prettier-vscode"
	],

	// Use 'forwardPorts' to make a list of ports inside the container available locally.
	"forwardPorts": [/* for debugging execution tests */ 9876],

	// Use 'postCreateCommand' to run commands after the container is created.
	"postCreateCommand": "yarn install",

	// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
	// "remoteUser": "node"
}