这是TypeScript配置文件中的错误。具体有两个问题:
- 错误TS6306:引用的项目
/tsconfig.node.json
必须设置"composite": true
- 错误TS6310:引用的项目
tsconfig.node.json
不能禁用emit
要解决这些问题,需要修改tsconfig.node.json
文件:
- 首先,查看当前的
tsconfig.node.json
文件:
cat /tsconfig.node.json
- 编辑该文件,添加
"composite": true
并确保没有设置"noEmit": true
:
nano /tsconfig.node.json
- 修改后的文件应该类似于:
{"compilerOptions": {"composite": true, // 添加这一行"module": "ESNext","moduleResolution": "Node","allowSyntheticDefaultImports": true// 确保没有 "noEmit": true},"include": ["vite.config.ts"]
}
这些错误通常出现在使用TypeScript项目引用(Project References)功能时。设置"composite": true
可以启用增量编译,而引用的项目必须能够生成输出(不能设置noEmit: true
)。
修改配置文件后,重新运行构建命令应该能够解决这个问题。