mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
- 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>
39 lines
1.1 KiB
JSON
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": []
|
|
}
|