mediago-dev--mediago
a611919bcb
- shared-browser: inline createBrowserI18n into apps/ui/src/i18n/
- shared-node: move code into apps/electron by function:
- i18n → core/i18n.ts
- handle decorator → core/decorators.ts
- registerControllerHandlers → core/registerControllerHandlers.ts
- TYPES → types/symbols.ts
- binaryResolver → utils/binaryResolver.ts
- DownloaderServer/VideoServer → services/
- copy binaryResolver to apps/server for resolveCoreBinaries
- config: move tsconfig.{base,app,node}.json to monorepo root
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 行
255 B
JSON
11 行
255 B
JSON
{
|
|
"extends": "../../tsconfig.app.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
}
|