aboutsummaryrefslogtreecommitdiffhomepage
path: root/.devcontainer/devcontainer.json
blob: 66214695762aba09814cba111b2a197602204835 (plain) (blame)
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
{
	"name": "Submelon FP",
	"image": "mcr.microsoft.com/devcontainers/typescript-node:18-bullseye",
	"features": {
		"ghcr.io/devcontainers/features/docker-from-docker:1": {}
	},
	
	"customizations": {
		"vscode": {
			"settings": {
				"files.exclude": {
					"**/.yarn": true,
					"**/node_modules": true
				}
			},
			"extensions": [
				"ginfuru.better-nunjucks"
			]
		}
	},

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

}