Files
RSSHub/tsconfig.json
DIYgod 20b67e1402 chore: add Vercel build configuration
- Introduced a new build script for Vercel in package.json.
- Created a new tsdown configuration file for Vercel deployment.
- Updated tsconfig.json to remove the deprecated vercel.ts file from the include path.
- Added a new server entry point for compatibility with Vercel's deployment.
2025-08-10 18:34:16 +08:00

24 lines
601 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"paths": {
"@/*": ["./lib/*"]
},
"esModuleInterop": true,
"noImplicitAny": false,
"outDir": "./dist",
"skipLibCheck": true,
"noEmit": true,
"incremental": true,
"resolveJsonModule": true,
"isolatedModules": true
},
"include": ["./lib/**/*"],
"exclude": ["node_modules", "*.test.*"]
}