To use VS-Code environment
// For redhat YAML plugin
{
"yaml.format.enable":true,
"yaml.customTags": [
"!fn",
"!And",
"!If",
"!Not",
"!Equals",
"!Or",
"!FindInMap sequence",
"!Base64",
"!Cidr",
"!Ref",
"!Sub",
"!GetAtt",
"!GetAZs",
"!ImportValue",
"!Select",
"!Split",
"!Join sequence",
"!Select sequence"
],
"[yaml]": {
"editor.insertSpaces":true,
"editor.tabSize":4,
"editor.quickSuggestions":true
}
}
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Debug SAM app on 9229",
"address": "localhost",
"port": 9229,
"localRoot": "${workspaceRoot}/sam-app/src",
"remoteRoot": "/var/task",
"protocol": "inspector",
"stopOnEntry": false
},
{
"type": "node",
"request": "attach",
"name": "Debug nodejs tool on 9229",
"address": "localhost",
"port": 9229,
"cwd": "${workspaceFolder}/admin-tools",
"protocol": "inspector",
"stopOnEntry": false
},
]
}