up()
├── shared/
│ ├── index.ts
│ ├── formatters.ts
│ ├── validators.ts
| ├── package.json
├── project/
│ ├── project.ts
│ ├── package.json
export class A{
}
export class B{
}
export class C{
}
export * from './validators'
export * from './formatters'
怎么让索引文件看起来像这样
import {A} from 'shared'
console.log(A) //undefined
然后有效
答案 0 :(得分:0)
证明构建无法正常工作。我不知道为什么,但是导入没有在构建的index.js文件中注册