-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathknip.json
More file actions
47 lines (47 loc) · 911 Bytes
/
knip.json
File metadata and controls
47 lines (47 loc) · 911 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"tags": [
"-lintignore"
],
"entry": [
"./frontend/javascripts/main.tsx",
"./frontend/stylesheets/main.less",
"frontend/javascripts/test/**/*"
],
"project": [
"./frontend/**/*"
],
"vite": false,
"ignoreFiles": [
"vite.config.ts"
],
"paths": {
"viewer": [
"./frontend/javascripts/viewer/*"
],
"admin": [
"./frontend/javascripts/admin/*"
],
"dashboard": [
"./frontend/javascripts/dashboard/*"
],
"router": [
"./frontend/javascripts/router/*"
],
"types": [
"./frontend/javascripts/types/*"
],
"libs": [
"./frontend/javascripts/libs/*"
],
"messages": [
"./frontend/javascripts/messages.tsx"
],
"app": [
"./frontend/javascripts/app.ts"
],
"theme": [
"./frontend/javascripts/theme.tsx"
]
}
}