警告提示
vscode中vue项目创建新文件后都会提示仅当 “module” 选项设置为 “es2022”、“esnext”、“system”、“node16” 或 “nodenext”,且 “target” 选项设置为 “es2017” 或更高版本时,才允许使用顶级 “await” 表达式。
在 VS Code 中,如果您在 TypeScript 文件中使用顶级 await
(即在模块的最顶层直接使用 await
而不是在 async
函数中),并且收到了这个提示,这意味着您需要在 TypeScript 配置文件 tsconfig.json
中做一些调整。
这是因为顶级 await
是一个较新的 JavaScript 功能,它只在 ES2022 和更高版本的 ECMAScript 模块中可用,以及在 Node.js 版本 16 或更高版本的模块系统中。
要解决这个问题,请确保您的 tsconfig.json
文件包含以下配置:
{"compilerOptions": {"module": "esnext", // 可以是 "es2022", "esnext", "system", "node16", 或 "nodenext""target": "es2017", // 或更高版本,如 "es2018", "es2019", "es2020", "es2021", 或 "esnext"// ... 其他选项}// ... 其他配置
}
这里是一个 tsconfig.json
文件的示例:
{"compilerOptions": {"target": "es2020","module": "esnext","strict": true,"esModuleInterop": true,"moduleResolution": "node","outDir": "./dist","baseUrl": "./","paths": {"*": ["node_modules/*", "src/types/*"]}},"include": ["src/**/*"]
}
在这个配置中:
"module": "esnext"
表示使用最新的模块标准。"target": "es2020"
表示编译输出的目标 JavaScript 版本。
确保在 VS Code 中打开的项目根目录有 tsconfig.json
文件,或者在您的工作区中正确地设置了 TypeScript 配置。
如果您的项目不是 TypeScript 项目,而您正在编辑一个 JavaScript 文件,您可能需要创建一个 jsconfig.json
文件,它与 tsconfig.json
非常相似,但用于 JavaScript 项目。配置也类似:
{"compilerOptions": {"module": "esnext","target": "es2020"},"include": ["**/*.js"]
}
这些设置应该会解决您在 VS Code 中遇到的关于顶级 await
使用的提示。