mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-21 00:28:08 +08:00
Make tsc happy with the js-sdk
This commit is contained in:
parent
adc7892d8c
commit
446fd9c7c0
@ -16,6 +16,9 @@ limitations under the License.
|
||||
|
||||
import { useCallback, useEffect, useState } from "react";
|
||||
import { MatrixClient } from "matrix-js-sdk/src/client";
|
||||
// XXX: This must come after the other js-sdk import because of
|
||||
// https://github.com/matrix-org/matrix-js-sdk/issues/2351
|
||||
import "matrix-js-sdk/src/@types/global";
|
||||
import { GroupCall } from "matrix-js-sdk/src/webrtc/groupCall";
|
||||
import { CallFeed } from "matrix-js-sdk/src/webrtc/callFeed";
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
"moduleResolution": "node",
|
||||
"noEmit": true,
|
||||
"noImplicitAny": false,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedLocals": false,
|
||||
"jsx": "preserve",
|
||||
"lib": [
|
||||
"es2020",
|
||||
|
Loading…
Reference in New Issue
Block a user