mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 03:12:29 +00:00
fix(ts) set ES2024 as our target for web
We depend on ES2024 features. For environments without full support, webpack will add polyfills.
This commit is contained in:
committed by
Saúl Ibarra Corretgé
parent
5260cd7e30
commit
3f51b10245
@@ -26,11 +26,6 @@ export interface IProps {
|
||||
* @abstract
|
||||
*/
|
||||
export class AbstractApp<P extends IProps = IProps> extends BaseApp<P> {
|
||||
/**
|
||||
* The deferred for the initialization {{promise, resolve, reject}}.
|
||||
*/
|
||||
_init: PromiseWithResolvers<any>;
|
||||
|
||||
/**
|
||||
* Initializes the app.
|
||||
*
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
"compilerOptions": {
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"module": "es2020",
|
||||
"target": "es2020",
|
||||
"target": "es2024",
|
||||
"jsx": "react",
|
||||
"lib": [ "ES2020", "ES2024.Promise", "DOM" ],
|
||||
"lib": [ "ES2024", "DOM" ],
|
||||
"skipLibCheck": true,
|
||||
"moduleResolution": "Node",
|
||||
"strict": true,
|
||||
|
||||
Reference in New Issue
Block a user