is top level await in typescript supported?
# general
b
is top level await in typescript supported?
a
Yes, this should be possible as of Pulumi version 1.7: https://github.com/pulumi/pulumi/blob/master/CHANGELOG.md#170-2019-12-11 Basically you wrap your entire pulumi program within
Copy code
export = async () => {
<program>
}
👍 1
b
great thanks!