Closed
Description
// @target: es2017
// @module: esnext
await 100;
This gives the following error message:
'await' outside of an async function is only allowed at the top level of a module when '--module' is 'esnext' or 'system' and '--target' is 'es2017' or higher.
This is really unclear! My compiler options are all set correctly, so why is this not working?
It's because it's not a module. This error message is expecting me to meet 3 different conditions, "top level of a module" is unclear for any user who just wants to use this feature. They'll likely take "module" to just mean "file".