| 15 | } |
| 16 | |
| 17 | export interface AnalyzerOptions { |
| 18 | stdout?: boolean; |
| 19 | limit?: number; |
| 20 | filter?: string | string[] | ((moduleObject: Module) => boolean); |
| 21 | filterSummary?: boolean; |
| 22 | root?: string; |
| 23 | hideDeps?: boolean; |
| 24 | showExports?: boolean; |
| 25 | summaryOnly?: boolean; |
| 26 | skipFormatted?: boolean; |
| 27 | writeTo?: (analysisString: string) => void; |
| 28 | transformModuleId?: (id: string) => string; |
| 29 | onAnalysis?: (analysisObject: AnalysisObject) => void; |
| 30 | } |
| 31 | |
| 32 | export interface AnalysisObject { |
| 33 | bundleSize: number; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…