mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-03-13 10:30:18 +08:00
- 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.
24 lines
601 B
JSON
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.*"]
|
|
}
|