- Add Next.js app structure with base configs, linting, and formatting - Implement LiveKit Meet page, types, and utility functions - Add Docker, Compose, and deployment scripts for backend and token server - Provide E2E and smoke test scaffolding with Puppeteer and Playwright helpers - Include CSS modules and global styles for UI - Add postMessage and studio integration utilities - Update package.json with dependencies and scripts for development and testing
22 lines
692 B
JSON
22 lines
692 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"ignoreDeprecations": "6.0",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"outDir": "dist",
|
|
"tsBuildInfoFile": "node_modules/.cache/broadcast-panel.tsbuildinfo",
|
|
"baseUrl": "../..",
|
|
"paths": {
|
|
"@/*": ["packages/broadcast-panel/src/*"],
|
|
"@shared/*": ["shared/*"],
|
|
"@shared": ["shared"],
|
|
"@avanzacast/shared-hooks": ["shared/hooks"],
|
|
"@avanzacast/shared-components": ["shared/components"],
|
|
"@avanzacast/shared-utils": ["shared/utils"],
|
|
"@avanzacast/shared-types": ["shared/types"]
|
|
}
|
|
},
|
|
"include": ["src", "../../shared"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|