我正在尝试运行打字稿服务器。我正在使用ts-node作为从打字稿到javascript的 translator 。所有翻译后的文件都进入一个名为out的文件夹中。 当我运行npm start时,出现以下错误
module.js:550
throw err;
从日志中,我的文件名似乎不正确
[1] [nodemon] restarting due to changes...
[1] [nodemon] starting `node out/server/app/www.jspp.ts `
Error: Cannot find module 'C:\Users\Asus\Documents\Coding\trading-bot\serverpp.ts '
该文件的路径是正确的路径,但是文件名是www.ts和server.ts。我不知道如何以及在何处修改文件名。 < / p>
此外,在我的 package.json 中,我的脚本中还包含以下行
"start": "tsc && concurrently --kill-others \"tsc -w \" \"nodemon out/server/app/www.js\" ",