aboutsummaryrefslogtreecommitdiffhomepage
path: root/.devcontainer/devcontainer.json
blob: c294c30f3c5dfd30aee5622fa4ab0e11b6743764 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
	"name": "Submelon FP",
	"image": "mcr.microsoft.com/devcontainers/typescript-node:18-bullseye",
	
	"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"

}