我的代码在运行时有效 npm run dev
但当我构建它时,它给出了这个错误。根据文档,我需要在tsconfig.json中将目标设置为es2017或更高版本,但我使用的是我认为兼容的esnext
错误
tsconfig.json
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": false,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": ["./src"]
}
1条答案
按热度按时间ny6fqffe1#
因为我在问题中使用了vite,所以vite.config.ts应该是我想要编辑的,而不是tsconfig.json
下面是对它的修复vite.config.ts