vite.ts 176 B

12345678910
  1. export type ViteManifestValue = {
  2. file: string;
  3. src: string;
  4. isEntry?: boolean;
  5. css?: string[];
  6. };
  7. export type ViteManifest = {
  8. [key: string]: ViteManifestValue;
  9. };