rearrage_stuff

This commit is contained in:
Kim Ravn Hansen
2025-09-16 11:26:40 +02:00
parent 40e8c5e0ab
commit 3f11ebe6dc
4937 changed files with 1146031 additions and 134 deletions

26
node_modules/vite-plugin-devtools-json/dist/index.d.ts generated vendored Normal file
View 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 Vites `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 };