javascript 错误“错误TS18003:在Node.js的配置文件”“中找不到输入

iqxoj9l9  于 2023-01-19  发布在  Java
关注(0)|答案(1)|浏览(169)

如何修复此错误?我正在运行Windows 11
当我尝试在cmd上执行npm run build时,我收到以下错误:
Error

文件 * 包.json*

package.json

文件 tsconfig.json

"compilerOptions": {
  "target": "es2016",
  "module": "commonjs",
  "rootDir": "XSHOPPER-BACKEND",
  "moduleResolution": "node",
  "outDir": "build",
  "esModuleInterop": true,
  "forceConsistentCasingInFileNames": true,
  "strict": true,
  "skipLibCheck": true
},
mqxuamgl

mqxuamgl1#

看起来像是tsconfig.json文件将"include"字段放在了"compilerOptions"下,但是include是tsconfig.json模式的顶级字段,可能只需要将它移到正确的位置。

相关问题