Files
afilmory/be/apps/core/tsconfig.json
Innei 4cdb3bfd4e feat(static-web): implement static OG image generation service and add font support
- Updated Dockerfile to use Alpine variant for Node.js and added Perl installation.
- Introduced StaticOgService for generating Open Graph images with customizable templates.
- Added Geist-Medium font for rendering OG images.
- Updated TypeScript configuration to include JSX support and adjusted paths.
- Created type declarations for assets and Vercel OG module.
- Added new static assets for OG image generation.

Signed-off-by: Innei <tukon479@gmail.com>
2025-11-06 21:33:30 +08:00

32 lines
733 B
JSON

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