Replace the standalone IDE/Tray components with the framework shell from core/gui/ui. The IDE frontend is now minimal routing config that uses: - ApplicationFrameComponent as the HLCRF layout (header, sidebar, content, footer) - ProviderHostComponent for dynamic custom element rendering via :provider route - SystemTrayFrameComponent for the 380x480 tray panel Go side: add GET /api/v1/providers endpoint (ProvidersAPI) that returns all registered providers from the Registry plus runtime providers from the RuntimeManager. The Angular frontend calls this on startup to populate navigation and load custom elements. Also bumps @angular/build and @angular/cli to 21.x to match @angular/core. Co-Authored-By: Virgil <virgil@lethean.io>
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"target": "ES2022",
|
|
"module": "preserve",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@bindings/*": [
|
|
"bindings/*"
|
|
],
|
|
"@core/gui-ui": [
|
|
"../../gui/ui/src/index.ts"
|
|
],
|
|
"@core/gui-ui/*": [
|
|
"../../gui/ui/src/*"
|
|
]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"typeCheckHostBindings": true,
|
|
"strictTemplates": true
|
|
},
|
|
"files": [],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.app.json"
|
|
},
|
|
{
|
|
"path": "./tsconfig.spec.json"
|
|
}
|
|
]
|
|
}
|