2026-05-10 04:59:58 +03:00
|
|
|
import type { KnipConfig } from 'knip';
|
|
|
|
|
|
|
|
|
|
const config: KnipConfig = {
|
2026-05-14 08:38:51 +03:00
|
|
|
entry: [
|
|
|
|
|
'resources/js/app.ts',
|
|
|
|
|
'resources/js/router/index.ts',
|
|
|
|
|
'histoire.config.ts',
|
|
|
|
|
'resources/js/histoire.setup.ts',
|
|
|
|
|
],
|
2026-05-10 04:59:58 +03:00
|
|
|
project: ['resources/js/**/*.{ts,vue}'],
|
2026-05-14 08:38:51 +03:00
|
|
|
ignore: ['**/*.story.vue'],
|
2026-05-10 04:59:58 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default config;
|