rearrage_stuff
This commit is contained in:
26
node_modules/vite-plugin-devtools-json/dist/index.d.ts
generated
vendored
Normal file
26
node_modules/vite-plugin-devtools-json/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import { Plugin } from 'vite';
|
||||
|
||||
interface DevToolsJsonOptions {
|
||||
/**
|
||||
* Optional fixed UUID. If omitted the plugin will generate
|
||||
* (and cache) one automatically, which is the previous default behaviour.
|
||||
*/
|
||||
uuid?: string;
|
||||
/**
|
||||
* Absolute (or relative) path that should be reported as the project root
|
||||
* in DevTools. When omitted, we fall back to Vite’s `config.root` logic.
|
||||
*/
|
||||
projectRoot?: string;
|
||||
/**
|
||||
* @deprecated Use `normalizeForWindowsContainer` instead. Will be removed in a future major version.
|
||||
*/
|
||||
normalizeForChrome?: boolean;
|
||||
/**
|
||||
* Whether to rewrite Linux paths to UNC form so Chrome running on Windows
|
||||
* (WSL or Docker Desktop) can mount them as a workspace. Enabled by default.
|
||||
*/
|
||||
normalizeForWindowsContainer?: boolean;
|
||||
}
|
||||
declare const plugin: (options?: DevToolsJsonOptions) => Plugin;
|
||||
|
||||
export { plugin as default };
|
||||
Reference in New Issue
Block a user