我正在使用带有打字稿的 create-react-app 模板。在我的本地电脑上,成功运行构建,但在 CI 服务器中运行时,构建失败。
- 构建错误
./src/store/redux/info/index.ts 语法错误:无法读取未定义的属性“名称”(0:未定义)
但是文件中没有“名称”属性
信息/index.ts
export { default } from "./reducer";
export * from "./actions";
export * from "./types";
"react": "16.12.0",
"react-app-rewired": "2.1.5",
"antd": "3.26.5",
"antd-theme-webpack-plugin": "1.3.0",
"typescript": "3.7.4",
"build": "react-app-rewired --max-old-space-size=8192 build",