mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-03-13 10:30:18 +08:00
47 lines
828 B
JSON
47 lines
828 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "hono/jsx",
|
|
"paths": {
|
|
"@/*": [
|
|
"./lib/*"
|
|
]
|
|
},
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": false,
|
|
"outDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"incremental": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"./lib/**/*.ts",
|
|
"./lib/**/*.tsx",
|
|
"./app/**/*.ts",
|
|
"./app/**/*.tsx",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"*.test.*"
|
|
]
|
|
}
|