これらのパッケージはすべてどのようにインストールされていますか?process.env
? そして、なぜ私はNODE_ENVがnpm scripts
に設定され表示されていない: ` "スタート": "NODE_ENV = DEV NPM & & NPMの実行が& & NPMの実行tslintを見て構築、実行"?NPMパッケージin process.env
マイNPMスクリプト: "scripts": { "start": "npm run build && npm run watch && npm run tslint", "build": "npm run build-ts", "serve": "nodemon dist/Server.js", "watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"", "test": "mocha --compilers ts:ts-node/register", "build-ts": "tsc", "watch-ts": "tsc -w", "tslint": "tslint -c tslint.json -p tsconfig.json", "debug": "npm run build && npm run watch-debug", "serve-debug": "nodemon --inspect dist/Server.js", "watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"" },
npm install maybe?また、あなたの設定ファイルはどのように見えますか? –