mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
* fix(devcontainer): upgrade node to version 20 * chore: since Windows and Linux use different default line endings, Git may report a large number of modified files that have no differences aside from their line endings.
17 lines
490 B
JSON
17 lines
490 B
JSON
// If you want to run as a non-root user in the container, see .devcontainer/docker-compose.yml.
|
|
{
|
|
"name": "Node.js 20 & Postgres",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "web",
|
|
"workspaceFolder": "/workspace",
|
|
// Add the IDs of extensions you want installed when the container is created in the array below.
|
|
"customizations":{
|
|
"vscode": {
|
|
"extensions": ["dbaeumer.vscode-eslint"],
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash"
|
|
}
|
|
}
|
|
}
|
|
}
|