* Add knip as dev dependency. * Add config and script for knip. * Add additional ignores to the file list. * Remove knip as a dependency, download and run it :).
16 lines
418 B
JSON
16 lines
418 B
JSON
{
|
|
"$schema": "https://unpkg.com/knip@5/schema-jsonc.json",
|
|
"exclude": ["types", "exports"],
|
|
"ignore": [
|
|
"examples/**",
|
|
"**/*.mdx",
|
|
// skip supabase functions
|
|
"supabase/functions/**",
|
|
"**/*.test.ts",
|
|
// ignore studio public folder
|
|
"apps/studio/public/**",
|
|
// ignore studio components, they're dynamically imported
|
|
"apps/studio/components/interfaces/Connect/content/**",
|
|
],
|
|
}
|