mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-08-29 01:53:47 +08:00
25 lines
628 B
JSON
25 lines
628 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,
|
|
"types": ["node"],
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["./lib/**/*"],
|
|
"exclude": ["node_modules", "*.test.*"]
|
|
}
|