This commit is contained in:
Colin McDonnell
2023-04-25 21:26:08 -07:00
parent 2fbe8ba36d
commit 21cb257651

View File

@@ -165,6 +165,7 @@ export type BuildManifest = {
path: string;
kind: ImportKind;
external?: boolean;
asset?: boolean; // whether the import defaulted to "file" loader
}[];
};
};
@@ -173,14 +174,10 @@ export type BuildManifest = {
outputs: {
[path: string]: {
type: "chunk" | "entry-point" | "asset";
inputs: {
[path: string]: {
bytesInOutput: number;
};
};
inputs: { path: string }[];
imports: {
path: string;
kind: ImportKind | "file-loader";
kind: ImportKind;
external?: boolean;
}[];
exports: string[];