标签: javascript typescript
将我的create-react-app转换为打字稿,并在尝试导入我的组件之一时遇到问题
如果我这样做import component from /path/to/component/index.ts,那么它会起作用
import component from /path/to/component/index.ts
但是如果我import component from /path/to/component不起作用
import component from /path/to/component
,但这确实适用于标准.js文件。我需要添加一些配置才能使其正常工作吗?
.js