-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathknip.json
More file actions
34 lines (34 loc) · 836 Bytes
/
knip.json
File metadata and controls
34 lines (34 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"entry": [
"src/main.tsx!",
"src/routes/**/*.{ts,tsx}!",
"src/features/*/index.ts!"
],
"project": [
"src/**/*.{ts,tsx}!",
"tests/**/*.{ts,tsx}",
"!src/generated/**",
"!storybook-build/**",
"!dist/**",
"!node_modules/**"
],
"ignore": [
"src/generated/**",
"src/vite-env.d.ts",
"src/app/vite-dotenv-checker.plugin.ts",
"src/shared/config/**",
"src/shared/lib/sentry/**"
],
"ignoreDependencies": ["daisyui"],
"ignoreBinaries": [],
"ignoreExportsUsedInFile": true,
"paths": {
"@generated/*": ["./src/generated/*"],
"@pages/*": ["./src/pages/*"],
"@shared/*": ["./src/shared/*"],
"@widgets/*": ["./src/widgets/*"],
"@features/*": ["./src/features/*"],
"@public/*": ["./public/*"]
}
}