reorganize workspace configuration

This commit is contained in:
Carlos Santos 2025-10-16 11:42:15 +02:00
parent eada9d8ac7
commit f0ac4e6f47

View File

@ -2,43 +2,53 @@
"folders": [ "folders": [
{ {
"name": "openvidu-components-angular", "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", "name": "openvidu-meet (PRO)",
"path": "typings" "path": "meet-pro",
},
{
"name": "backend",
"path": "backend"
},
{
"name": "frontend-src",
"path": "frontend/src"
}, },
{ {
"name": "testapp", "name": "testapp",
"path": "testapp" "path": "testapp",
}, },
{ {
"name": "shared-meet-components", "name": "shared-meet-components",
"path": "frontend/projects/shared-meet-components/src" "path": "frontend/projects/shared-meet-components",
}, },
{ {
"name": "webcomponent", "name": "meet-webcomponent",
"path": "frontend/webcomponent" "path": "meet-ce/frontend/webcomponent",
},
{
"path": "../openvidu/openvidu-components-angular"
} }
], ],
"settings": { "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.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.files": "./frontend/tests/e2e/**/*.test.ts",
// "mochaExplorer.mochaPath": "./frontend/node_modules/mocha", // "mochaExplorer.mochaPath": "./frontend/node_modules/mocha",
// "mochaExplorer.require": "ts-node/register", // "mochaExplorer.require": "ts-node/register",
@ -47,5 +57,5 @@
// "mochaExplorer.env": { // "mochaExplorer.env": {
// "NODE_ENV": "test" // "NODE_ENV": "test"
// } // }
} },
} }