如何修复此错误?我正在运行Windows 11。
当我尝试在cmd上执行npm run build
时,我收到以下错误:
Error
文件 * 包.json*
文件 tsconfig.json
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"rootDir": "XSHOPPER-BACKEND",
"moduleResolution": "node",
"outDir": "build",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
1条答案
按热度按时间mqxuamgl1#
看起来像是tsconfig.json文件将
"include"
字段放在了"compilerOptions"
下,但是include
是tsconfig.json模式的顶级字段,可能只需要将它移到正确的位置。