blob: 6fb168b2bcffa62c76410905f5224713344b14af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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.106.0/containers/typescript-node-12
{
"name": "Node.js 12 & TypeScript",
"dockerFile": "Dockerfile",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"orta.vscode-jest"
],
"postCreateCommand": "yarn install"
}
|