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

60
node_modules/@dxup/nuxt/dist/module.d.mts generated vendored Normal file
View File

@@ -0,0 +1,60 @@
import * as _nuxt_schema0 from "@nuxt/schema";
//#region src/module/index.d.ts
interface ModuleOptions {
features?: {
/**
* Whether to update references when renaming auto imported component files.
* @default true
*/
components?: boolean;
/**
* Whether to enable Go to Definition for dynamic imports with glob patterns.
* @default true
*/
importGlob?: boolean;
/**
* Whether to enable Go to Definition for nitro routes in data fetching methods.
* @default true
*/
nitroRoutes?: boolean;
/**
* Whether to enable Go to Definition for page metadata.
* @default true
*/
pageMeta?: boolean;
/**
* Whether to enable Go to Definition for runtime config.
* @default true
*/
runtimeConfig?: boolean;
/**
* Whether to enable Go to Definition for typed pages.
* @default true
*/
typedPages?: boolean;
/**
* Whether to enable enhanced navigation for auto imported APIs.
* @default true
*/
unimport?: boolean | {
/**
* Whether to enable Find References for SFC on `<template>`.
*/
componentReferences: boolean;
};
};
}
declare const _default: _nuxt_schema0.NuxtModule<ModuleOptions, {
features: {
components: true;
importGlob: true;
nitroRoutes: true;
pageMeta: true;
runtimeConfig: true;
typedPages: true;
unimport: true;
};
}, true>;
//#endregion
export { ModuleOptions, _default as default };