36 lines
834 B
JSON
36 lines
834 B
JSON
{
|
|
"$schema": "https://unpkg.com/knip@5/schema.json",
|
|
"workspaces": {
|
|
".": {
|
|
"ignore": [".opencode/**"]
|
|
},
|
|
"server": {
|
|
"entry": ["tests/**/*.ts"],
|
|
"project": ["src/**/*.ts", "tests/**/*.ts"],
|
|
"ignore": [
|
|
"src/_luaScriptsV2/**",
|
|
"src/utils/importUtils/**",
|
|
"src/utils/scriptUtils/**",
|
|
"src/utils/workerUtils/**"
|
|
]
|
|
},
|
|
"shared": {
|
|
"entry": ["index.ts"],
|
|
"project": ["**/*.ts"],
|
|
"includeEntryExports": false,
|
|
"ignore": ["api/balances/track/changes/V0.2_TrackChange.ts"]
|
|
},
|
|
"vite": {
|
|
"entry": ["src/main.tsx"],
|
|
"project": ["src/**/*.{ts,tsx}"],
|
|
"ignore": ["src/components/ai-elements/**"],
|
|
"ignoreDependencies": ["tailwindcss"]
|
|
},
|
|
"scripts": {
|
|
"entry": ["**/*.{ts,js}"],
|
|
"project": ["**/*.{ts,js}"]
|
|
}
|
|
},
|
|
"ignoreBinaries": ["infisical", "lsof", "serve"]
|
|
}
|