-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathknip.json
More file actions
33 lines (33 loc) · 974 Bytes
/
knip.json
File metadata and controls
33 lines (33 loc) · 974 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
{
"$schema": "https://unpkg.com/knip@latest/schema.json",
"workspaces": {
".": {
"entry": ["scripts/*.js"],
"project": ["scripts/**/*.js"]
},
"core/*": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"]
},
"databases/*": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"]
},
"loaders/*": {
"entry": ["src/index.ts", "src/**/*-loader.ts"],
"project": ["src/**/*.ts"]
},
"models/*": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"]
},
"examples/*": {
"entry": ["src/main.ts"],
"project": ["src/**/*.ts"]
}
},
"ignore": ["dist/**", "tmp/**", "node_modules/**", "**/CHANGELOG.md", "**/*.md", "docs/**"],
"ignoreDependencies": [],
"ignoreExportsUsedInFile": true,
"includeEntryExports": true
}