diff --git a/openvidu-meet.code-workspace b/openvidu-meet.code-workspace index faa12a6..bcc182e 100644 --- a/openvidu-meet.code-workspace +++ b/openvidu-meet.code-workspace @@ -2,43 +2,53 @@ "folders": [ { "name": "openvidu-components-angular", - "path": "../openvidu/openvidu-components-angular" + "path": "../openvidu/openvidu-components-angular", }, { - "path": "." + "name": "openvidu-meet (root)", + "path": ".", + }, + { + "name": "openvidu-meet (CE)", + "path": "meet-ce", }, { - "name": "typings", - "path": "typings" - }, - { - "name": "backend", - "path": "backend" - }, - { - "name": "frontend-src", - "path": "frontend/src" + "name": "openvidu-meet (PRO)", + "path": "meet-pro", }, { "name": "testapp", - "path": "testapp" + "path": "testapp", }, { "name": "shared-meet-components", - "path": "frontend/projects/shared-meet-components/src" + "path": "frontend/projects/shared-meet-components", }, { - "name": "webcomponent", - "path": "frontend/webcomponent" - }, - { - "path": "../openvidu/openvidu-components-angular" + "name": "meet-webcomponent", + "path": "meet-ce/frontend/webcomponent", } ], "settings": { - "jest.disabledWorkspaceFolders": ["openvidu-meet", "types", "frontend"], + "files.exclude": { + "**/meet-ce": true, + "**/meet-pro": true, + "**/webcomponent": true, + "**/.angular": true, + "**/public": true, + "**/dist": true, + "**/node_modules": true, + "**/test-results": true, + "**/webhooks-snippets": true, + }, + "jest.disabledWorkspaceFolders": ["openvidu-meet", "typings", "frontend"], "mochaExplorer.files": "tests/e2e/**/*.test.ts", - "mochaExplorer.require": ".mocharc.js" + "mochaExplorer.require": ".mocharc.js", + + "files.watcherExclude": { + "**/node_modules/**": true, + "**/dist/**": true, + }, // "mochaExplorer.files": "./frontend/tests/e2e/**/*.test.ts", // "mochaExplorer.mochaPath": "./frontend/node_modules/mocha", // "mochaExplorer.require": "ts-node/register", @@ -47,5 +57,5 @@ // "mochaExplorer.env": { // "NODE_ENV": "test" // } - } + }, }