Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+25
@@ -0,0 +1,25 @@
|
||||
export type HotMiddlewareMessage = {
|
||||
action: 'building';
|
||||
name?: string;
|
||||
} | {
|
||||
action: 'built' | 'sync';
|
||||
name: string;
|
||||
time: number | undefined;
|
||||
errors: unknown[];
|
||||
warnings: unknown[];
|
||||
hash: string | undefined;
|
||||
modules: {
|
||||
[key: string]: string;
|
||||
};
|
||||
};
|
||||
export declare const hotMiddlewareOptions: {
|
||||
path: string;
|
||||
timeout: number;
|
||||
reload: boolean;
|
||||
warn: boolean;
|
||||
heartbeat: number;
|
||||
};
|
||||
export type HotMiddlewareOptions = typeof hotMiddlewareOptions;
|
||||
export type ModuleMap = {
|
||||
[key: string]: string;
|
||||
};
|
||||
Reference in New Issue
Block a user