mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-08-31 01:01:11 +08:00
24 lines
620 B
JSON
24 lines
620 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/**/*", "./api/vercel.ts"],
|
|
"exclude": ["node_modules", "*.test.*"]
|
|
}
|