我正在按照教程在此处创建高级 Outlook 加载项(Git the Gist)
以上是使用Yeoman和Microsoft Office Add-in Project Generator的node.js应用程序。要简单地启动加载项,您只需在根项目文件夹中键入“npm start”。
但是:我想在Visual Studio Code中调试加载项。
launch.json
当你想调试一个项目时,VS Code 会自动创建一个文件。该文件如下所示:
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}\\bsconfig.json"
}
]
但是,当我调试时,出现以下错误:
无法启动程序
'c:\ZTesting\outlooktest\bsconfig.json'
;设置outFiles
属性可能会有所帮助。
那么这些outFiles
真的是问题吗?如果是的话,它们应该是什么?而且 - 如果不是 - 调试使用node.js、Yeoman和Microsoft Office Add-in Project Generator创建的 Web 插件的解决方案是什么?
该bsconfig.json
文件如下所示:
{
"ui": {
"port": 3000
},
"server": {
"routes": {
"/node_modules": "node_modules"
}
},
"https": {
"key": "./certs/server.key",
"cert": "./certs/server.crt"
},
"watch": true,
"files": "*.*"
}