gpt4 book ai didi

node.js - TypeScript OutDir 包含 package.json

转载 作者:太空宇宙 更新时间:2023-11-03 23:13:13 25 4
gpt4 key购买 nike

我正在尝试构建我的简单 npm 包,一切都很好。然而,当我尝试构建它时,它出了点问题。

我得到以下信息:

 - dist
- package.json
- src
- index.js
- index.d.ts
- ...

但这不是我期望得到的,我很确定我之前已经这样做过并得到了以下结果:

 - dist
- index.js
- index.d.ts
- ...

这就是我想要的最终结果,但到目前为止还没有任何效果。

我的tsconfig.json看起来像这样:

{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": ["es6", "dom"],
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"strict": true,
"esModuleInterop": true
},
"include": ["src"],
"exclude": ["node_modules", "build", "dist"]
}

我还没有找到包含 package.jsonsrc 路径的原因。我正在使用 typescript@3.6.4

最佳答案

您是否在代码中的任何位置导入 package.json ?如果你是,it's getting copied because of resolveJsonModule .

如果您想读取 JSON 文件而不复制它们,您可以执行 readFileJSON.parse

关于node.js - TypeScript OutDir 包含 package.json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58712412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com