Это в файле package.json демонстрационного приложения:
"scripts": {
"start": "cd public && npm run tsc && cd .. && node ./bin/www",
"debug": "cd public && npm run tsc && cd .. && node-debug ./bin/www",
"tsc": "cd public && npm run tsc",
"tsc:w": "cd public && npm run tsc:w",
"express": "node ./bin/www",
"express-debug": "node-debug ./bin/www",
"postinstall": "cd public && npm install"
},
вопрос 1, все нормально, когда я сделал npm run postinstall
, но npm run debug
получил 'node-debug'не распознается как внутренняя или внешняя команда.
вопрос 2, как мне перевести эту запись в файл launch.json?
"debug": "cd public && npm run tsc && cd .. && node-debug ./bin/www"