RSSHub/tsconfig.json

19 lines
469 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"
},
"include": ["./lib/**/*", "./api/vercel.ts"],
"exclude": ["node_modules", "*.test.*"]
}