请帮我在pm2 config中运行此脚本
"scripts": {
"start": "export NODE_ENV=production; npm run tsc:build && node -r dotenv/config dist/src/index.js",
}
tsc:build
==== npm run clean && node_modules/.bin/tsc
它只是使打字稿编译。
我需要在config中运行它:
apps: [{
name: 'my-app',
script: '????',
args: '?????',
}]
谢谢您的帮助:)