From 1bc0b6b54263cdc787368b5e3e6cd9d7901467dc Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Wed, 21 May 2025 18:17:52 +0200 Subject: [PATCH] Updated tesconfig.json of openvidu-testapp --- openvidu-testapp/tsconfig.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/openvidu-testapp/tsconfig.json b/openvidu-testapp/tsconfig.json index 520d6e07..24f9e67c 100644 --- a/openvidu-testapp/tsconfig.json +++ b/openvidu-testapp/tsconfig.json @@ -4,16 +4,18 @@ "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, + "module": "esnext", "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, - "target": "es2020", + "target": "ES6", "typeRoots": [ "node_modules/@types" ], "lib": [ "es2017", - "dom" + "dom", + "ES2021.WeakRef" ] } }