···11+// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22+// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node
33+{
44+ "name": "Node.js",
55+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
66+ "image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bookworm",
77+88+ // Features to add to the dev container. More info: https://containers.dev/features.
99+ // "features": {},
1010+1111+ // Use 'postCreateCommand' to run commands after the container is created.
1212+1313+ // Configure tool-specific properties.
1414+ "customizations": {
1515+ "vscode": {
1616+ "extensions": [
1717+ "hbenl.vscode-mocha-test-adapter",
1818+ "dbaeumer.vscode-eslint",
1919+ "TakumiI.markdowntable"
2020+ ]
2121+ }
2222+ }
2323+2424+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
2525+ // "remoteUser": "root"
2626+}