Files
afilmory/be/apps/core/tsconfig.json
Innei caf47a4a01 feat(og): implement Open Graph image generation for photos
- Added OgModule with OgController and OgService to handle Open Graph image requests.
- Integrated Satori and Resvg for rendering images based on photo metadata.
- Created OgTemplate for structuring the Open Graph image layout.
- Enhanced error handling for photo retrieval and image generation processes.
- Updated package dependencies to include @resvg/resvg-js and satori for image processing.

Signed-off-by: Innei <tukon479@gmail.com>
2025-11-08 17:58:12 +08:00

39 lines
1.1 KiB
JSON

{
"compilerOptions": {
"incremental": true,
"target": "es2022",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Bundler",
"verbatimModuleSyntax": true,
"types": ["node"],
"paths": {
"core": ["./src"],
"core/*": ["./src/*"],
"@afilmory/db": ["../../packages/db/src"],
"@afilmory/db/*": ["../../packages/db/src/*"],
"@afilmory/be-utils": ["../../packages/utils/src"],
"@afilmory/be-utils/*": ["../../packages/utils/src/*"],
"@afilmory/websocket": ["../../packages/websocket/src"],
"@afilmory/websocket/*": ["../../packages/websocket/src/*"]
},
"resolveJsonModule": true,
"allowJs": true,
"strict": true,
"noImplicitAny": false,
"declaration": false,
"outDir": "./dist",
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
},
"include": ["src/**/*", "*.d.ts"],
"exclude": []
}