根文件夹中的env.d.ts文件中,用三斜线导入node_module中的类型声明文件,在main.ts中要使用import.meta.env,提示ImportMetaEnv不存在,原因是什么?
1已经在env.d.ts文件中写了类型声明2但在main.ts中,vite特有的用来导出环境变量的对象import.meta.env提示ImportMetaEnv不存在,为什么会这样3原因是,在ts.config.json文件中,include字段,没有包含根文件夹中第1层的env.d.ts文件,这样就不会去根文件夹中去找env.d.ts文件,所以提示不存在4解决方法:方法1在ts.config.