openrag/frontend/knip.config.ts
2025-12-10 13:43:11 -06:00

18 lines
284 B
TypeScript

import type { KnipConfig } from 'knip';
const config: KnipConfig = {
entry: [
'app/**/*.{ts,tsx}',
'next.config.ts',
],
project: ['**/*.{ts,tsx}'],
ignore: [
'**/*.d.ts',
'**/node_modules/**',
'.next/**',
'public/**',
],
};
export default config;