Files
AFFiNE-Mirror/packages/frontend/apps/electron-renderer/tsconfig.json
pengx17 a016630a82 feat(electron): create recording through tray (#10526)
- added tray menu for controlling recording status
- recording watcher for monitoring system audio input events
2025-03-18 04:12:30 +00:00

21 lines
574 B
JSON

{
"extends": "../../../../tsconfig.web.json",
"compilerOptions": {
"rootDir": "./src",
// dist is kept for webpack output
"outDir": "./lib",
"tsBuildInfoFile": "./lib/tsconfig.tsbuildinfo"
},
"include": ["./src"],
"references": [
{ "path": "../../component" },
{ "path": "../../core" },
{ "path": "../../electron-api" },
{ "path": "../../i18n" },
{ "path": "../../../common/nbstore" },
{ "path": "../../../../blocksuite/affine/all" },
{ "path": "../../../common/infra" },
{ "path": "../../../../tools/utils" }
]
}