-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathknip.json
More file actions
74 lines (74 loc) · 1.87 KB
/
Copy pathknip.json
File metadata and controls
74 lines (74 loc) · 1.87 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "https://unpkg.com/knip@6/schema.json",
"workspaces": {
".": {
"entry": [
"src/app/**/{layout,page,route,template}.{ts,tsx}",
"src/app/**/{error,loading,not-found,default,global-error}.{ts,tsx}",
"src/app/**/manifest.ts",
"src/middleware.ts",
"src/instrumentation.ts",
"bin/**/*.{mjs,ts}",
"scripts/**/*.{mjs,ts}",
"electron/main.js",
"electron/preload.js",
"electron/loginManager.js"
],
"project": ["src/**/*.{ts,tsx}", "!src/**/*.test.{ts,tsx}"],
"ignore": [
"src/**/*.test.{ts,tsx}",
"tests/**",
"node_modules/**",
".build/**",
"dist/**",
"coverage/**",
"**/.next/**"
],
"ignoreDependencies": [
"typescript",
"tsx",
"@types/*",
"eslint*",
"prettier",
"husky",
"lint-staged",
"cross-env",
"concurrently",
"wait-on",
"c8",
"source-map-support"
],
"includeEntryExports": false
},
"open-sse": {
"entry": [
"index.ts",
"handlers/**/*.ts",
"executors/**/*.ts",
"translator/**/*.ts",
"transformer/**/*.ts",
"services/**/*.ts",
"utils/**/*.ts",
"config/**/*.ts",
"mcp-server/**/*.ts"
],
"project": ["**/*.ts", "!**/*.test.ts"],
"ignore": ["**/*.test.ts", "node_modules/**", "dist/**"]
}
},
"include": ["exports", "nsExports", "types", "nsTypes", "files"],
"exclude": ["dependencies", "devDependencies", "unlisted", "unresolved", "binaries"],
"ignoreExportsUsedInFile": true,
"ignore": [
"tests/**",
"**/*.test.{ts,tsx}",
"**/*.spec.{ts,tsx}",
"node_modules/**",
".build/**",
"dist/**",
"coverage/**",
"**/.next/**",
"electron/dist-electron/**",
"scripts/**"
]
}