configuration of devcontainer is changed

This commit is contained in:
병준 박 2022-08-05 07:08:59 +00:00
parent 05c8a5ddee
commit b69c09f0c1

View File

@ -11,20 +11,33 @@
"VARIANT": "16-bullseye" "VARIANT": "16-bullseye"
} }
}, },
// Configure tool-specific properties.
// Set *default* container specific settings.json values on container create. "customizations": {
"settings": {}, // Configure properties specific to VS Code.
"vscode": {
// Add the IDs of extensions you want installed when the container is created. // Set *default* container specific settings.json values on container create.
"extensions": [ "settings": {
"dbaeumer.vscode-eslint", // VS Code don't watch files under ./target
"esbenp.prettier-vscode", "files.watcherExclude": {
"angular.ng-template", "**/.git/objects/**": true,
"donjayamanne.githistory", "**/.git/subtree-cache/**": true,
"eamodio.gitlens", "**/node_modules/*/**": true
"mhutchie.git-graph" },
], "editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.formatOnSave": true
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"angular.ng-template",
"donjayamanne.githistory",
"eamodio.gitlens",
"mhutchie.git-graph"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally. // Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [], // "forwardPorts": [],
"portsAttributes": { "portsAttributes": {