模块 ""path"" 只能在使用 "allowSyntheticDefaultImports" 标志时进行默认导入
在tsconfig.node.json
添加compilerOptions对象属性添加"allowSyntheticDefaultImports": true
{
"compilerOptions": {
"composite": true,
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
},
"include": ["vite.config.ts"]
}