From f531fcd5c3ffa6a7958f023d52c2ad9d5a1b311a Mon Sep 17 00:00:00 2001 From: Aaron Date: Sat, 28 Dec 2024 09:40:52 -0600 Subject: [PATCH] fix: Add back `ExtensionRunnerConfig` as deprecated (#1311) --- packages/wxt/src/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/wxt/src/types.ts b/packages/wxt/src/types.ts index ebcacaa5..e384718c 100644 --- a/packages/wxt/src/types.ts +++ b/packages/wxt/src/types.ts @@ -906,6 +906,11 @@ export interface ConfigEnv { export type WxtCommand = 'build' | 'serve'; +/** + * @deprecated Use `WebExtConfig` instead. + */ +export type ExtensionRunnerConfig = WebExtConfig; + /** * Options for how [`web-ext`](https://github.com/mozilla/web-ext) starts the browser. */