pulse-zax/knip.json

44 lines
828 B
JSON

{
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
".": {
"entry": [],
"project": []
},
"apps/server": {
"entry": [
"src/**/__tests__/**/*.test.ts",
"build/**/*.ts"
],
"project": ["src/**/*.ts"],
"ignore": [
"src/db/migrations/**",
"data/**",
"data-test/**"
]
},
"apps/client": {
"entry": [
"src/main.tsx"
],
"project": ["src/**/*.{ts,tsx}"],
"ignore": [
"dist/**",
"public/**"
]
},
"packages/shared": {
"entry": ["src/**/*.ts"],
"project": ["src/**/*.ts"]
}
},
"ignore": [
"**/*.d.ts",
"**/dist/**",
"**/build/**",
"**/node_modules/**"
],
"ignoreDependencies": [],
"ignoreExportsUsedInFile": true
}