32 lines
944 B
JSON
32 lines
944 B
JSON
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
|
|
{
|
|
"name": "Boilerplate Card Development",
|
|
"image": "ludeeus/devcontainer:monster-stable",
|
|
"context": "..",
|
|
"appPort": ["5000:5000", "9123:8123"],
|
|
"postCreateCommand": "npm install",
|
|
"runArgs": [
|
|
"-v",
|
|
"${env:HOME}${env:USERPROFILE}/.ssh:/tmp/.ssh" // This is added so you can push from inside the container
|
|
],
|
|
"extensions": [
|
|
"github.vscode-pull-request-github",
|
|
"tabnine.tabnine-vscode",
|
|
"dbaeumer.vscode-eslint",
|
|
"ms-vscode.vscode-typescript-tslint-plugin",
|
|
"esbenp.prettier-vscode",
|
|
"bierner.lit-html",
|
|
"runem.lit-plugin",
|
|
"ms-python.python"
|
|
],
|
|
"settings": {
|
|
"files.eol": "\n",
|
|
"editor.tabSize": 4,
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"files.trimTrailingWhitespace": true
|
|
}
|
|
}
|