mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
18 lines
407 B
JSON
18 lines
407 B
JSON
|
// https://github.com/microsoft/vscode-dev-containers/tree/master/containers/typescript-node
|
||
|
{
|
||
|
"name": "Node.js & TypeScript",
|
||
|
"build": {
|
||
|
"dockerfile": "Dockerfile",
|
||
|
// Update 'VARIANT' to pick a Node version: 10, 12, 14
|
||
|
"args": {
|
||
|
"VARIANT": "14"
|
||
|
}
|
||
|
},
|
||
|
"settings": {
|
||
|
"terminal.integrated.shell.linux": "/bin/bash"
|
||
|
},
|
||
|
"extensions": [
|
||
|
"dbaeumer.vscode-eslint"
|
||
|
],
|
||
|
"remoteUser": "node"
|
||
|
}
|