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 d188df1 commit a092a8eCopy full SHA for a092a8e
packages/vite-plugin-tempest/src/plugin.ts
@@ -15,7 +15,11 @@ const TEMPEST_ORIGIN_PLACEHOLDER = 'http://__tempest_placeholder__.test'
15
16
let exitHandlersBound = false
17
18
-export default function tempest(options: { config_file_path?: string } = {}): Plugin {
+export interface TempestPluginOptions {
19
+ config_file_path?: string;
20
+}
21
+
22
+export default function tempest(options: TempestPluginOptions = {}): Plugin {
23
let viteDevServerUrl: DevelopmentServerUrl
24
let bridgeFilePath: string
25
let resolvedConfig: ResolvedConfig
0 commit comments