npm build跟types有什么关系?

我写了一个lib库,package.json中定义了一些配置

{

"main": "/dist/index.umd.js",

"module": "/dist/index.mjs",

"types": "/dist/index.d.ts",

"scripts": {

"build": "vite build"

}

}

我需要执行build命令把代码编译到dist,再去发布,但是一开始dist是空文件夹,每次执行build命令,都会报错,说没有dist/index.d.ts

✓ built in 268ms

error during build:

Error: ENOENT: no such file or directory, open '/dist/index.d.ts'

我如何设置build的时候不关联这个types字段。


回答:

types作用是指定 TypeScript 的类型定义的入口文件,
你设置相对路径看看
"types": "./dist/index.d.ts", 或者入口文件名不对?

以上是 npm build跟types有什么关系? 的全部内容, 来源链接: utcz.com/p/934082.html

回到顶部