?
This commit is contained in:
61
node_modules/vite-plugin-inspect/dist/shared/vite-plugin-inspect.2cd7208c.d.cts
generated
vendored
Normal file
61
node_modules/vite-plugin-inspect/dist/shared/vite-plugin-inspect.2cd7208c.d.cts
generated
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
import { FilterPattern } from '@rollup/pluginutils';
|
||||
|
||||
interface Options {
|
||||
/**
|
||||
* Enable the inspect plugin in dev mode (could be some performance overhead)
|
||||
*
|
||||
* @default true
|
||||
*/
|
||||
dev?: boolean;
|
||||
/**
|
||||
* Enable the inspect plugin in build mode, and output the report to `.vite-inspect`
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
build?: boolean;
|
||||
/**
|
||||
* @deprecated use `dev` or `build` option instead.
|
||||
*/
|
||||
enabled?: boolean;
|
||||
/**
|
||||
* Directory for build inspector UI output
|
||||
* Only work in build mode
|
||||
*
|
||||
* @default '.vite-inspect'
|
||||
*/
|
||||
outputDir?: string;
|
||||
/**
|
||||
* Filter for modules to be inspected
|
||||
*/
|
||||
include?: FilterPattern;
|
||||
/**
|
||||
* Filter for modules to not be inspected
|
||||
*/
|
||||
exclude?: FilterPattern;
|
||||
/**
|
||||
* Base URL for inspector UI
|
||||
*
|
||||
* @default read from Vite's config
|
||||
*/
|
||||
base?: string;
|
||||
/**
|
||||
* Print URL output silently in the terminal
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
silent?: boolean;
|
||||
/**
|
||||
* Automatically open inspect page
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
open?: boolean;
|
||||
/**
|
||||
* Remove version query `?v=xxx` and treat them as the same module
|
||||
*
|
||||
* @default true
|
||||
*/
|
||||
removeVersionQuery?: boolean;
|
||||
}
|
||||
|
||||
export type { Options as O };
|
||||
61
node_modules/vite-plugin-inspect/dist/shared/vite-plugin-inspect.2cd7208c.d.mts
generated
vendored
Normal file
61
node_modules/vite-plugin-inspect/dist/shared/vite-plugin-inspect.2cd7208c.d.mts
generated
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
import { FilterPattern } from '@rollup/pluginutils';
|
||||
|
||||
interface Options {
|
||||
/**
|
||||
* Enable the inspect plugin in dev mode (could be some performance overhead)
|
||||
*
|
||||
* @default true
|
||||
*/
|
||||
dev?: boolean;
|
||||
/**
|
||||
* Enable the inspect plugin in build mode, and output the report to `.vite-inspect`
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
build?: boolean;
|
||||
/**
|
||||
* @deprecated use `dev` or `build` option instead.
|
||||
*/
|
||||
enabled?: boolean;
|
||||
/**
|
||||
* Directory for build inspector UI output
|
||||
* Only work in build mode
|
||||
*
|
||||
* @default '.vite-inspect'
|
||||
*/
|
||||
outputDir?: string;
|
||||
/**
|
||||
* Filter for modules to be inspected
|
||||
*/
|
||||
include?: FilterPattern;
|
||||
/**
|
||||
* Filter for modules to not be inspected
|
||||
*/
|
||||
exclude?: FilterPattern;
|
||||
/**
|
||||
* Base URL for inspector UI
|
||||
*
|
||||
* @default read from Vite's config
|
||||
*/
|
||||
base?: string;
|
||||
/**
|
||||
* Print URL output silently in the terminal
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
silent?: boolean;
|
||||
/**
|
||||
* Automatically open inspect page
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
open?: boolean;
|
||||
/**
|
||||
* Remove version query `?v=xxx` and treat them as the same module
|
||||
*
|
||||
* @default true
|
||||
*/
|
||||
removeVersionQuery?: boolean;
|
||||
}
|
||||
|
||||
export type { Options as O };
|
||||
61
node_modules/vite-plugin-inspect/dist/shared/vite-plugin-inspect.2cd7208c.d.ts
generated
vendored
Normal file
61
node_modules/vite-plugin-inspect/dist/shared/vite-plugin-inspect.2cd7208c.d.ts
generated
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
import { FilterPattern } from '@rollup/pluginutils';
|
||||
|
||||
interface Options {
|
||||
/**
|
||||
* Enable the inspect plugin in dev mode (could be some performance overhead)
|
||||
*
|
||||
* @default true
|
||||
*/
|
||||
dev?: boolean;
|
||||
/**
|
||||
* Enable the inspect plugin in build mode, and output the report to `.vite-inspect`
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
build?: boolean;
|
||||
/**
|
||||
* @deprecated use `dev` or `build` option instead.
|
||||
*/
|
||||
enabled?: boolean;
|
||||
/**
|
||||
* Directory for build inspector UI output
|
||||
* Only work in build mode
|
||||
*
|
||||
* @default '.vite-inspect'
|
||||
*/
|
||||
outputDir?: string;
|
||||
/**
|
||||
* Filter for modules to be inspected
|
||||
*/
|
||||
include?: FilterPattern;
|
||||
/**
|
||||
* Filter for modules to not be inspected
|
||||
*/
|
||||
exclude?: FilterPattern;
|
||||
/**
|
||||
* Base URL for inspector UI
|
||||
*
|
||||
* @default read from Vite's config
|
||||
*/
|
||||
base?: string;
|
||||
/**
|
||||
* Print URL output silently in the terminal
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
silent?: boolean;
|
||||
/**
|
||||
* Automatically open inspect page
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
open?: boolean;
|
||||
/**
|
||||
* Remove version query `?v=xxx` and treat them as the same module
|
||||
*
|
||||
* @default true
|
||||
*/
|
||||
removeVersionQuery?: boolean;
|
||||
}
|
||||
|
||||
export type { Options as O };
|
||||
Reference in New Issue
Block a user