Files
vat-api.eu/node_modules/@nuxt/schema/dist/_chunks/libs/esbuild-loader.d.mts
2026-02-13 22:02:30 +01:00

16 lines
673 B
TypeScript

import { G as TransformOptions, K as transform } from "./@vitejs/plugin-vue-jsx.mjs";
//#region ../../node_modules/.pnpm/esbuild-loader@4.4.2_webpack@5.104.1_esbuild@0.27.3_/node_modules/esbuild-loader/dist/index.d.cts
type Implementation = {
transform: typeof transform;
};
type Except<ObjectType, Properties> = { [Key in keyof ObjectType as (Key extends Properties ? never : Key)]: ObjectType[Key] };
type LoaderOptions = Except<TransformOptions, 'sourcemap' | 'sourcefile'> & {
/** Pass a custom esbuild implementation */implementation?: Implementation;
/**
* Path to tsconfig.json file
*/
tsconfig?: string;
};
//#endregion
export { LoaderOptions as t };