Skip to content

Commit e577a40

Browse files
authored
Upgrade to TypeScript 5 (#8561)
1 parent 4db3d3e commit e577a40

File tree

103 files changed

+13713
-1666
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+13713
-1666
lines changed

.vscode/launch.json

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
"version": "0.2.0",
66
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Prune .d.ts",
11+
"program": "${workspaceRoot}/repo-scripts/prune-dts/node_modules/.bin/_mocha",
12+
"cwd": "${workspaceRoot}/repo-scripts/prune-dts",
13+
"args": [
14+
"--require",
15+
"ts-node/register",
16+
"--timeout",
17+
"5000",
18+
"${workspaceFolder}/repo-scripts/prune-dts/*.test.ts"
19+
],
20+
"env": {
21+
"TS_NODE_COMPILER_OPTIONS" : "{\"module\":\"commonjs\"}"
22+
},
23+
"sourceMaps": true,
24+
},
725
{
826
"type": "node",
927
"request": "launch",

docs-devsite/analytics.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ Whether a particular consent type has been granted or denied.
990990
<b>Signature:</b>
991991

992992
```typescript
993-
export declare type ConsentStatusString = 'granted' | 'denied';
993+
export type ConsentStatusString = 'granted' | 'denied';
994994
```
995995

996996
## Currency
@@ -1000,7 +1000,7 @@ Standard Google Analytics currency type.
10001000
<b>Signature:</b>
10011001

10021002
```typescript
1003-
export declare type Currency = string | number;
1003+
export type Currency = string | number;
10041004
```
10051005

10061006
## CustomEventName
@@ -1010,7 +1010,7 @@ Any custom event name string not in the standard list of recommended event names
10101010
<b>Signature:</b>
10111011

10121012
```typescript
1013-
export declare type CustomEventName<T> = T extends EventNameString ? never : T;
1013+
export type CustomEventName<T> = T extends EventNameString ? never : T;
10141014
```
10151015

10161016
## EventNameString
@@ -1020,5 +1020,5 @@ Type for standard Google Analytics event names. `logEvent` also accepts any cust
10201020
<b>Signature:</b>
10211021

10221022
```typescript
1023-
export declare type EventNameString = 'add_payment_info' | 'add_shipping_info' | 'add_to_cart' | 'add_to_wishlist' | 'begin_checkout' | 'checkout_progress' | 'exception' | 'generate_lead' | 'login' | 'page_view' | 'purchase' | 'refund' | 'remove_from_cart' | 'screen_view' | 'search' | 'select_content' | 'select_item' | 'select_promotion' | 'set_checkout_option' | 'share' | 'sign_up' | 'timing_complete' | 'view_cart' | 'view_item' | 'view_item_list' | 'view_promotion' | 'view_search_results';
1023+
export type EventNameString = 'add_payment_info' | 'add_shipping_info' | 'add_to_cart' | 'add_to_wishlist' | 'begin_checkout' | 'checkout_progress' | 'exception' | 'generate_lead' | 'login' | 'page_view' | 'purchase' | 'refund' | 'remove_from_cart' | 'screen_view' | 'search' | 'select_content' | 'select_item' | 'select_promotion' | 'set_checkout_option' | 'share' | 'sign_up' | 'timing_complete' | 'view_cart' | 'view_item' | 'view_item_list' | 'view_promotion' | 'view_search_results';
10241024
```

docs-devsite/app-check.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,5 @@ A listener that is called whenever the App Check token changes.
197197
<b>Signature:</b>
198198

199199
```typescript
200-
export declare type AppCheckTokenListener = (token: AppCheckTokenResult) => void;
200+
export type AppCheckTokenListener = (token: AppCheckTokenResult) => void;
201201
```

docs-devsite/auth.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2114,7 +2114,7 @@ Map of OAuth Custom Parameters.
21142114
<b>Signature:</b>
21152115

21162116
```typescript
2117-
export declare type CustomParameters = Record<string, string>;
2117+
export type CustomParameters = Record<string, string>;
21182118
```
21192119

21202120
## NextOrObserver
@@ -2124,7 +2124,7 @@ Type definition for an event callback.
21242124
<b>Signature:</b>
21252125

21262126
```typescript
2127-
export declare type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
2127+
export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
21282128
```
21292129

21302130
## PhoneInfoOptions
@@ -2136,7 +2136,7 @@ The information that's required depends on whether you are doing single-factor s
21362136
<b>Signature:</b>
21372137

21382138
```typescript
2139-
export declare type PhoneInfoOptions = PhoneSingleFactorInfoOptions | PhoneMultiFactorEnrollInfoOptions | PhoneMultiFactorSignInInfoOptions;
2139+
export type PhoneInfoOptions = PhoneSingleFactorInfoOptions | PhoneMultiFactorEnrollInfoOptions | PhoneMultiFactorSignInInfoOptions;
21402140
```
21412141

21422142
## UserProfile
@@ -2146,5 +2146,5 @@ User profile used in [AdditionalUserInfo](./auth.additionaluserinfo.md#additiona
21462146
<b>Signature:</b>
21472147

21482148
```typescript
2149-
export declare type UserProfile = Record<string, unknown>;
2149+
export type UserProfile = Record<string, unknown>;
21502150
```

docs-devsite/functions.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Possible values: - 'cancelled': The operation was cancelled (typically by the ca
147147
<b>Signature:</b>
148148

149149
```typescript
150-
export declare type FunctionsErrorCode = `functions/${FunctionsErrorCodeCore}`;
150+
export type FunctionsErrorCode = `functions/${FunctionsErrorCodeCore}`;
151151
```
152152

153153
## FunctionsErrorCodeCore
@@ -157,7 +157,7 @@ Functions error code string appended after "functions/" product prefix. See [Fun
157157
<b>Signature:</b>
158158

159159
```typescript
160-
export declare type FunctionsErrorCodeCore = 'ok' | 'cancelled' | 'unknown' | 'invalid-argument' | 'deadline-exceeded' | 'not-found' | 'already-exists' | 'permission-denied' | 'resource-exhausted' | 'failed-precondition' | 'aborted' | 'out-of-range' | 'unimplemented' | 'internal' | 'unavailable' | 'data-loss' | 'unauthenticated';
160+
export type FunctionsErrorCodeCore = 'ok' | 'cancelled' | 'unknown' | 'invalid-argument' | 'deadline-exceeded' | 'not-found' | 'already-exists' | 'permission-denied' | 'resource-exhausted' | 'failed-precondition' | 'aborted' | 'out-of-range' | 'unimplemented' | 'internal' | 'unavailable' | 'data-loss' | 'unauthenticated';
161161
```
162162

163163
## HttpsCallable
@@ -167,5 +167,5 @@ A reference to a "callable" HTTP trigger in Google Cloud Functions.
167167
<b>Signature:</b>
168168

169169
```typescript
170-
export declare type HttpsCallable<RequestData = unknown, ResponseData = unknown> = (data?: RequestData | null) => Promise<HttpsCallableResult<ResponseData>>;
170+
export type HttpsCallable<RequestData = unknown, ResponseData = unknown> = (data?: RequestData | null) => Promise<HttpsCallableResult<ResponseData>>;
171171
```

docs-devsite/installations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ An user defined callback function that gets called when Installations ID changes
152152
<b>Signature:</b>
153153

154154
```typescript
155-
export declare type IdChangeCallbackFn = (installationId: string) => void;
155+
export type IdChangeCallbackFn = (installationId: string) => void;
156156
```
157157

158158
## IdChangeUnsubscribeFn
@@ -162,5 +162,5 @@ Unsubscribe a callback function previously added via [IdChangeCallbackFn](./inst
162162
<b>Signature:</b>
163163

164164
```typescript
165-
export declare type IdChangeUnsubscribeFn = () => void;
165+
export type IdChangeUnsubscribeFn = () => void;
166166
```

docs-devsite/remote-config.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Summarizes the outcome of the last attempt to fetch config from the Firebase Rem
325325
<b>Signature:</b>
326326

327327
```typescript
328-
export declare type FetchStatus = 'no-fetch-yet' | 'success' | 'failure' | 'throttle';
328+
export type FetchStatus = 'no-fetch-yet' | 'success' | 'failure' | 'throttle';
329329
```
330330

331331
## LogLevel
@@ -335,7 +335,7 @@ Defines levels of Remote Config logging.
335335
<b>Signature:</b>
336336

337337
```typescript
338-
export declare type LogLevel = 'debug' | 'error' | 'silent';
338+
export type LogLevel = 'debug' | 'error' | 'silent';
339339
```
340340

341341
## ValueSource
@@ -347,5 +347,5 @@ Indicates the source of a value.
347347
<b>Signature:</b>
348348

349349
```typescript
350-
export declare type ValueSource = 'static' | 'default' | 'remote';
350+
export type ValueSource = 'static' | 'default' | 'remote';
351351
```

docs-devsite/storage.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ An enumeration of the possible string formats for upload.
493493
<b>Signature:</b>
494494

495495
```typescript
496-
export declare type StringFormat = (typeof StringFormat)[keyof typeof StringFormat];
496+
export type StringFormat = (typeof StringFormat)[keyof typeof StringFormat];
497497
```
498498

499499
## TaskEvent
@@ -503,7 +503,7 @@ An event that is triggered on a task.
503503
<b>Signature:</b>
504504

505505
```typescript
506-
export declare type TaskEvent = 'state_changed';
506+
export type TaskEvent = 'state_changed';
507507
```
508508

509509
## TaskState
@@ -513,7 +513,7 @@ Represents the current state of a running upload.
513513
<b>Signature:</b>
514514

515515
```typescript
516-
export declare type TaskState = 'running' | 'paused' | 'success' | 'canceled' | 'error';
516+
export type TaskState = 'running' | 'paused' | 'success' | 'canceled' | 'error';
517517
```
518518

519519
## StorageErrorCode

docs-devsite/vertexai.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Content part - includes text, image/video, or function call/response part types.
184184
<b>Signature:</b>
185185

186186
```typescript
187-
export declare type Part = TextPart | InlineDataPart | FunctionCallPart | FunctionResponsePart | FileDataPart;
187+
export type Part = TextPart | InlineDataPart | FunctionCallPart | FunctionResponsePart | FileDataPart;
188188
```
189189

190190
## Role
@@ -194,7 +194,7 @@ Role is the producer of the content.
194194
<b>Signature:</b>
195195

196196
```typescript
197-
export declare type Role = (typeof POSSIBLE_ROLES)[number];
197+
export type Role = (typeof POSSIBLE_ROLES)[number];
198198
```
199199

200200
## Tool
@@ -214,7 +214,7 @@ A type that includes all specific Schema types.
214214
<b>Signature:</b>
215215

216216
```typescript
217-
export declare type TypedSchema = IntegerSchema | NumberSchema | StringSchema | BooleanSchema | ObjectSchema | ArraySchema;
217+
export type TypedSchema = IntegerSchema | NumberSchema | StringSchema | BooleanSchema | ObjectSchema | ArraySchema;
218218
```
219219

220220
## BlockReason

e2e/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"karma-typescript": "5.5.4",
3535
"karma-typescript-es6-transform": "5.5.4",
3636
"mocha": "9.2.2",
37-
"typescript": "4.7.4",
37+
"typescript": "5.5.4",
3838
"webpack": "5.76.0",
3939
"webpack-cli": "4.10.0",
4040
"webpack-dev-server": "4.11.1"

integration/compat-interop/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@firebase/remote-config-compat": "0.2.10"
2525
},
2626
"devDependencies": {
27-
"typescript": "4.7.4"
27+
"typescript": "5.5.4"
2828
},
2929
"engines": {
3030
"node": ">=18.0.0"

integration/compat-typings/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"firebase": "*"
1111
},
1212
"devDependencies": {
13-
"typescript": "4.7.4"
13+
"typescript": "5.5.4"
1414
},
1515
"engines": {
1616
"node": ">=18.0.0"

integration/firebase/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"karma-typescript": "5.5.4",
2121
"mocha": "9.2.2",
2222
"npm-run-all": "4.1.5",
23-
"typescript": "4.7.4"
23+
"typescript": "5.5.4"
2424
},
2525
"engines": {
2626
"node": ">=18.0.0"

integration/firestore/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"karma-spec-reporter": "0.0.36",
3030
"mocha": "9.2.2",
3131
"ts-loader": "9.5.1",
32-
"typescript": "4.2.2",
32+
"typescript": "5.5.4",
3333
"webpack": "5.76.0",
3434
"webpack-stream": "7.0.0"
3535
},

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"@types/long": "4.0.2",
8181
"@types/mocha": "9.1.1",
8282
"@types/mz": "2.7.8",
83-
"@types/node": "16.18.68",
83+
"@types/node": "18.19.57",
8484
"@types/request": "2.48.12",
8585
"@types/sinon": "9.0.11",
8686
"@types/sinon-chai": "3.2.12",
@@ -156,7 +156,7 @@
156156
"tsec": "0.2.8",
157157
"tslint": "6.1.3",
158158
"typedoc": "0.16.11",
159-
"typescript": "4.7.4",
159+
"typescript": "5.5.4",
160160
"watch": "1.0.2",
161161
"webpack": "5.76.0",
162162
"yargs": "17.7.2"

packages/analytics-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"rollup": "2.79.1",
2727
"@rollup/plugin-json": "4.1.0",
2828
"rollup-plugin-typescript2": "0.31.2",
29-
"typescript": "4.7.4"
29+
"typescript": "5.5.4"
3030
},
3131
"repository": {
3232
"directory": "packages/analytics-compat",

packages/analytics-interop-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"url": "https://github.com/firebase/firebase-js-sdk/issues"
2121
},
2222
"devDependencies": {
23-
"typescript": "4.7.4"
23+
"typescript": "5.5.4"
2424
}
2525
}

packages/analytics-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"url": "https://github.com/firebase/firebase-js-sdk/issues"
2121
},
2222
"devDependencies": {
23-
"typescript": "4.7.4"
23+
"typescript": "5.5.4"
2424
}
2525
}

packages/analytics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@rollup/plugin-json": "4.1.0",
5454
"@rollup/plugin-node-resolve": "13.3.0",
5555
"rollup-plugin-typescript2": "0.31.2",
56-
"typescript": "4.7.4"
56+
"typescript": "5.5.4"
5757
},
5858
"repository": {
5959
"directory": "packages/analytics",

packages/app-check-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"@rollup/plugin-json": "4.1.0",
5050
"@rollup/plugin-node-resolve": "13.3.0",
5151
"rollup-plugin-typescript2": "0.31.2",
52-
"typescript": "4.7.4"
52+
"typescript": "5.5.4"
5353
},
5454
"repository": {
5555
"directory": "packages/app-check",

packages/app-check-interop-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"url": "https://github.com/firebase/firebase-js-sdk/issues"
2121
},
2222
"devDependencies": {
23-
"typescript": "4.7.4"
23+
"typescript": "5.5.4"
2424
}
2525
}

packages/app-check-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"url": "https://github.com/firebase/firebase-js-sdk/issues"
2121
},
2222
"devDependencies": {
23-
"typescript": "4.7.4"
23+
"typescript": "5.5.4"
2424
}
2525
}

packages/app-check/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@rollup/plugin-json": "4.1.0",
5151
"@rollup/plugin-node-resolve": "13.3.0",
5252
"rollup-plugin-typescript2": "0.31.2",
53-
"typescript": "4.7.4"
53+
"typescript": "5.5.4"
5454
},
5555
"repository": {
5656
"directory": "packages/app-check",

packages/app-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"@rollup/plugin-json": "4.1.0",
4949
"rollup-plugin-replace": "2.2.0",
5050
"rollup-plugin-typescript2": "0.31.2",
51-
"typescript": "4.7.4"
51+
"typescript": "5.5.4"
5252
},
5353
"repository": {
5454
"directory": "packages/app-compat",

packages/app-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
"@firebase/logger": "0.2.6"
2525
},
2626
"devDependencies": {
27-
"typescript": "4.7.4"
27+
"typescript": "5.5.4"
2828
}
2929
}

packages/app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"rollup-plugin-replace": "2.2.0",
5151
"rollup-plugin-typescript2": "0.31.2",
5252
"rollup-plugin-dts": "5.3.1",
53-
"typescript": "4.7.4"
53+
"typescript": "5.5.4"
5454
},
5555
"repository": {
5656
"directory": "packages/app",

packages/auth-compat/demo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"rollup-plugin-sourcemaps": "0.6.3",
3535
"rollup-plugin-typescript2": "0.31.2",
3636
"rollup-plugin-uglify": "6.0.4",
37-
"typescript": "4.7.4"
37+
"typescript": "5.5.4"
3838
},
3939
"repository": {
4040
"directory": "packages/auth-compat/demo",

packages/auth-compat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"rollup-plugin-replace": "2.2.0",
6464
"rollup-plugin-typescript2": "0.31.2",
6565
"selenium-webdriver": "4.8.0",
66-
"typescript": "4.7.4"
66+
"typescript": "5.5.4"
6767
},
6868
"repository": {
6969
"directory": "packages/auth-compat",

0 commit comments

Comments
 (0)