feat: init

This commit is contained in:
2026-02-13 22:02:30 +01:00
commit 8f9ff830fb
16711 changed files with 3307340 additions and 0 deletions

26
node_modules/vite-plugin-vue-tracer/dist/index.d.mts generated vendored Normal file
View File

@@ -0,0 +1,26 @@
import { Plugin } from 'vite';
interface VueTracerOptions {
/**
* Enable this plugin or not, or only enable in certain environment.
*
* @default 'dev'
*/
enabled?: boolean | 'dev' | 'prod';
/**
* Resolve the record entry path to relative path.
* Normally, it should be true.
*
* @default true
*/
resolveRecordEntryPath?: boolean;
/**
* Enable Vite DevTools integration.
*
* @default false
*/
viteDevtools?: boolean;
}
declare function VueTracer(options?: VueTracerOptions): Plugin | undefined;
export { VueTracer, VueTracer as default };