FireScript的Firebase部署因TypeScript而失败

时间:2017-12-09 19:37:53

标签: firebase ionic3 firebase-hosting

我想将我的Ionic应用程序托管到firebase托管。现在,当我运行firebase deploy命令时,我得到了以下错误

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! functions@ build: `tslint -p tslint.json && ./node_modules/.bin/tsc`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the functions@ build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

Error: functions predeploy command terminated with non-zero exit code1

我缺少正确的工作

3 个答案:

答案 0 :(得分:4)

Package.json中的更改

"build": "node_modules/.bin/tslint -p tslint.json && ./node_modules/.bin/tsc"

"build": "node_modules/.bin/tslint -p tslint.json && tsc"

这对你有用。

答案 1 :(得分:1)

对我有用的是转到functions文件夹和'npm i typescript',将其更新为最新版本。

答案 2 :(得分:0)

functions文件夹内,原因可能是某些.ts文件(index.ts或您手动创建的其他文件)中的错误,但不会在日志中显示