We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9d3046 commit e37e1c4Copy full SHA for e37e1c4
packages/svelte/src/compiler/types/index.d.ts
@@ -224,9 +224,15 @@ export interface ModuleCompileOptions {
224
* Use this to filter out warnings. Return `true` to keep the warning, `false` to discard it.
225
*/
226
warningFilter?: (warning: Warning) => boolean;
227
- /** Experimental options */
+ /**
228
+ * Experimental options
229
+ * @since 5.36
230
+ */
231
experimental?: {
- /** Allow `await` keyword in deriveds, template expressions, and the top level of components */
232
233
+ * Allow `await` keyword in deriveds, template expressions, and the top level of components
234
235
236
async?: boolean;
237
};
238
}
0 commit comments