mirror of
https://github.com/Afilmory/afilmory
synced 2026-02-01 22:48:17 +00:00
- 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>
32 lines
733 B
JSON
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": []
|
|
}
|