File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
repo-scripts/size-analysis/bundle Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export type CustomEventName<T> = T extends EventNameString ? never : T;
37
37
// @public
38
38
export interface CustomParams {
39
39
// (undocumented)
40
- [key : string ]: any ;
40
+ [key : string ]: unknown ;
41
41
}
42
42
43
43
// @public
Original file line number Diff line number Diff line change @@ -12,7 +12,10 @@ import { PerformanceTrace } from '@firebase/performance-types-exp';
12
12
export { FirebasePerformance }
13
13
14
14
// @public
15
- export function getPerformance(app : FirebaseApp , settings ? : PerformanceSettings ): FirebasePerformance ;
15
+ export function getPerformance(app : FirebaseApp ): FirebasePerformance ;
16
+
17
+ // @public
18
+ export function initializePerformance(app : FirebaseApp , settings ? : PerformanceSettings ): FirebasePerformance ;
16
19
17
20
export { PerformanceSettings }
18
21
Original file line number Diff line number Diff line change @@ -36,9 +36,7 @@ export async function bundleWithRollup(
36
36
} ;
37
37
38
38
if ( moduleDirectory ) {
39
- resolveOptions . customResolveOptions = {
40
- moduleDirectory
41
- } ;
39
+ resolveOptions . moduleDirectories = [ moduleDirectory ] ;
42
40
}
43
41
44
42
const bundle = await rollup . rollup ( {
You can’t perform that action at this time.
0 commit comments