aboutsummaryrefslogtreecommitdiffhomepage
path: root/.devcontainer/devcontainer.json
blob: 1121200437204fccd88e38dbc710f5ed3909a00e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
	"name": "Submelon FP",
	"image": "mcr.microsoft.com/devcontainers/typescript-node:18-bullseye",
	"features": {
		"ghcr.io/devcontainers/features/docker-from-docker:1": {}
	},
	
	"customizations": {
		"vscode": {
			"extensions": [
				"ginfuru.better-nunjucks"
			]
		}
	},

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

}