让我们说我导出的文件结构如
|__ src
| |__ index.ts
| |__ other-file.ts
我想像
一样消费它import { something } from 'library'
import { other } from 'library/other-file'
我应该如何构建输出以实现这一目标?
答案 0 :(得分:1)
我应该如何构建输出以实现这一目标?
|__ lib
| |__ index.js
| |__ index.d.ts
| |__ other-file.js
| |__ other-file.d.ts
|__ src
| |__ index.ts
| |__ other-file.ts
tsconfig.json
/ outDir:lib
/ declaration:true
include:['src']
。
使用方式如下:
import { something } from 'library'
import { other } from 'library/lib/other-file'