gpt4 book ai didi

typescript - 为什么 tsc 不在 Heroku 中运行?

转载 作者:行者123 更新时间:2023-12-05 04:57:42 25 4
gpt4 key购买 nike

我有一个 React Express TypeScript 应用程序,我一直在努力将其部署到 Heroku。目的是部署应用程序而无需手动创建客户端 build(React 脚本)和服务器 dist (tsc) 文件夹,即这些文件夹应在 Heroku 部署期间构建。目前,build文件夹构建成功,dist文件夹构建失败。我通过在 bash 模式下运行已部署的应用程序并浏览文件夹来仔细检查了这一点。 tsc 似乎没有在服务器端运行,但在部署期间没有关于此的警告或错误。

为了提供一些概述,我有以下文件夹结构(为简洁起见,省略了许多文件夹和文件):

|-- client
| |-- public
| |-- src
| |-- package.json
| '-- tsconfig.json
|-- server
| |-- dist <-- **THIS FOLDER DOES NOT BUILD DURING DEPLOYMENT**
| |-- src
| |-- package.json
| '-- tsconfig.json
'-- package.json

我的 package.json 文件(在根文件夹中)如下所示:

{
... ,
"scripts": {
"start": "node server/dist/index.js",
"tsc": "tsc",
"build": "react-scripts build",
"heroku-prebuild": "npm install --prefix server && npm install --prefix client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false && NODE_ENV=production && npm run tsc --prefix server && npm run build --prefix client"
},
... ,
"engines": {
"node": "12.13.1",
"npm": "6.12.1"
}
}

...server/tsconfig.json 文件如下所示:

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [
"dist",
"node_modules"
],
"include": [
"src"
]
}

我的理解是 heroku-postbuild 中的 npm run tsc --prefix server 应该可以解决问题,但事实并非如此。我可能在这里遗漏了一些东西。也许我的文件夹结构不正确,但我觉得这应该不是部署应用程序的问题。

如果能得到任何帮助或指向正确方向的指示,我将不胜感激。

编辑:我还应该提到 TypeScript 已作为依赖项添加到 server/package.json 中:

{
...,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.4"
},
"dependencies": {
"@types/chai": "^4.2.13",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.34",
"@types/supertest": "^2.0.10",
"@typescript-eslint/parser": "^4.4.1",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"express": "^4.17.1",
"jest": "^26.5.3",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.1",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}

最佳答案

我还没有设法找到解决方案。所以我最终找到了解决方法。如果有人遇到同样的问题,我所做的是在服务器上手动运行 tsc 以创建 server/dist 文件夹。这不是我正在寻找的解决方案,但它现在有效。

关于typescript - 为什么 tsc 不在 Heroku 中运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64353466/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com