报错1:
node_modules/@vue/reactivity/dist/:26:15 - error TS2748: Cannot access ambient const enums when the '--isolatedModules' flag is provided.
处理:把文件中的"isolatedModules"设置成 false,
报错二:
path引入时的报错解决
模块 ““path”” 只能在使用 “allowSyntheticDefaultImports” 标志时进行默认导入
配置
{
"compilerOptions": {
"composite": true,
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true
},
"include": [""]
}