/
githubmirror
/
marked
Обзор
Документация
Войти
/
githubmirror
/
marked
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.devcontainer/devcontainer.json
18 строк
590 B
Tristan F
chore: add .devcontainer config (#2700)
08 янв 2023, 09:07
Не верифицирован
08 янв 2023, 09:07
c554f93
Код
Авторство
О чём код?
// For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node { "name": "marked", // We're using node 14 for development, to keep close to the engine compatibility that marked.js uses. "image": "mcr.microsoft.com/devcontainers/javascript-node:0-14", "postCreateCommand": "npm install", // Configure tool-specific properties. "customizations": { // Configure properties specific to VS Code. "vscode": { "extensions": [ "dbaeumeur.vscode-eslint" ] } } }