chore: update ts-uno-eslint configuration

This commit is contained in:
radishzzz 2025-01-13 04:23:37 +00:00
parent 9d2be2a82e
commit 2e5a6d7f1f
8 changed files with 122 additions and 56 deletions

View file

@ -1,37 +1,16 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"jsxImportSource": "astro",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"lib": ["esnext", "dom"],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["src/*"]
},
"resolveJsonModule": true,
"allowJs": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true
}
},
"skipLibCheck": true,
"include": [
"src/**/*.astro",
"src/**/*.ts",
"src/**/*.md",
"src/**/*.mdx",
".astro/types.d.ts"
],
"exclude": [
"node_modules",
"dist",
"public"
]
"exclude": ["dist"]
}