我正在为工作中的现有React应用启用打字稿,在启动开发服务器时,我一直收到打字稿导出错误。
TypeScript error in /App/some-path-at-work/index.js(2,1):
Declaration or statement expected. TS1128
export something from './something'
只有在我重构时才能解决
export {default as something} from './something'