mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
15 lines
485 B
JSON
15 lines
485 B
JSON
// 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"
|
|
}
|