Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.怎么解决这个问题
时间: 2023-08-18 13:07:11 浏览: 345
这个错误提示通常是在使用顶层 'await' 表达式时出现的,解决如下:
1. 将 tsconfig.json 文件中的 "module" 选项设置为 "es2022"、"esnext"、"system"、"node16" 或 "nodenext" 中的任意一个,例如:
```
{
"compilerOptions": {
"module": "esnext",
...
},
...
}
```
2. 将 tsconfig.json 文件中的 "target" 选项设置为 "es2017" 或更高的版本,例如:
```
{
"compilerOptions": {
"target": "es2017",
...
},
...
}
```
注意:如果你在使用的编辑器中使用 TypeScript,还需要确保编辑器的版本支持使用顶层 'await' 表达式,例如 TypeScript 4.2 或更高版本。
相关问题
Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.
这不是一个问题,而是一个错误提示。这个错误提示表示你在使用 'await' 表达式时,需要将 'module' 选项设置为 'es2022'、'esnext'、'system'、'node16' 或 'nodenext',同时将 'target' 选项设置为 'es2017' 或更高的版本。这通常是因为你的代码中使用了异步函数,而异步函数需要使用 'await' 关键字来等待异步操作完成后再执行后续代码。请仔细检查你的代码,并按照错误提示中的要求进行设置。
阅读全文