We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40ecc8e commit a10e446Copy full SHA for a10e446
src/lib/client/adapters/webcontainer/index.js
@@ -52,7 +52,10 @@ async function _create(stubs) {
52
throw new Error('WebContainers are not supported by Safari');
53
}
54
55
- const base = await new Promise(async (fulfil, reject) => {
+ /** @type {string} */
56
+ let base;
57
+
58
+ base = await new Promise(async (fulfil, reject) => {
59
/** @type {any} */
60
let timeout;
61
function reset_timeout() {
0 commit comments