node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

39
server/node_modules/esbuild-loader/dist/index.d.cts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import { TransformOptions, transform } from 'esbuild';
type Filter = string | RegExp;
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;
};
type EsbuildPluginOptions = Except<TransformOptions, 'sourcemap' | 'sourcefile'> & {
include?: Filter | Filter[];
exclude?: Filter | Filter[];
css?: boolean;
/** Pass a custom esbuild implementation */
implementation?: Implementation;
};
declare class EsbuildPlugin {
constructor(options?: EsbuildPluginOptions);
apply(): void;
}
export { EsbuildPlugin, type EsbuildPluginOptions, type LoaderOptions };