Files
TERES_web_frontend/packages/iframe-bridge/tsconfig.json
guangfei.zhao a3ff72e575 feat(iframe): add iframe bridge for ragflow integration
- Implement Penpal-based iframe communication bridge between host and child apps
- Add route handling for ragflow integration with '/route-ragflow' prefix
- Update navigation hooks to support embedded mode via iframe bridge
- Configure build and dependencies for new iframe-bridge package
- Adjust nginx config for proper SPA routing in subpath deployments
2025-11-10 16:11:21 +08:00

15 lines
366 B
JSON

{
"extends": "../../tsconfig.node.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"composite": true,
"noEmit": false,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"allowImportingTsExtensions": false,
"declaration": true,
"declarationMap": true
},
"include": ["src"]
}