mirror of
https://github.com/tangledup-ai/stepfun-vector-stores-admin.git
synced 2026-01-20 19:00:59 +08:00
16 lines
341 B
TypeScript
16 lines
341 B
TypeScript
import type { KnipConfig } from 'knip'
|
|
|
|
const config: KnipConfig = {
|
|
ignore: ['src/components/ui/**', 'src/routeTree.gen.ts'],
|
|
ignoreDependencies: ['tailwindcss', 'tw-animate-css'],
|
|
rules: {
|
|
files: 'warn',
|
|
dependencies: 'warn',
|
|
devDependencies: 'warn',
|
|
exports: 'warn',
|
|
types: 'warn',
|
|
},
|
|
}
|
|
|
|
export default config
|