-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathknip.json
More file actions
112 lines (112 loc) · 3.08 KB
/
knip.json
File metadata and controls
112 lines (112 loc) · 3.08 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
"apps/avm-relayer": {
"entry": ["src/**/*.ts", "scripts/**/*.ts", "test/**/*.ts"],
"project": ["src/**/*.ts", "scripts/**/*.ts", "test/**/*.ts"]
},
"apps/chain-interactions": {
"entry": ["src/**/*.ts", "scripts/**/*.ts", "test/**/*.ts"],
"project": ["src/**/*.ts", "scripts/**/*.ts", "test/**/*.ts"]
},
"apps/data-feeds-config-generator": {
"entry": ["scripts/**/*.ts"],
"project": ["src/**/*.ts", "scripts/**/*.ts"]
},
"apps/dev": {
"entry": ["src/**/*.ts", "scripts/**/*.ts", "test/**/*.ts"],
"project": ["src/**/*.ts", "scripts/**/*.ts", "test/**/*.ts"]
},
"apps/docs.blocksense.network": {
"entry": [
"app/**/*.{ts,tsx,mdx}",
"components/**/*.{ts,tsx}",
"hooks/**/*.{ts,tsx}",
"service/**/*.{ts,tsx}",
"@types/**/*.ts"
],
"project": [
"src/**/*.{ts,tsx,mdx}",
"app/**/*.{ts,tsx,mdx}",
"components/**/*.{ts,tsx}",
"hooks/**/*.{ts,tsx}",
"service/**/*.{ts,tsx}",
"@types/**/*.ts"
]
},
"apps/e2e-tests": {
"entry": ["src/**/*.ts", "@types/**/*.d.ts"],
"project": ["src/**/*.ts", "@types/**/*.d.ts"]
},
"apps/nft.blocksense.network": {
"entry": [
"app/**/*.{ts,tsx}",
"components/**/*.{ts,tsx}",
"service/**/*.{ts,tsx}"
],
"project": [
"src/**/*.{ts,tsx}",
"app/**/*.{ts,tsx}",
"components/**/*.{ts,tsx}",
"service/**/*.{ts,tsx}"
]
},
"apps/rollup": {
"project": ["**/*.mjs"]
},
"apps/social-verification": {
"entry": ["src/**/*.ts"],
"project": ["src/**/*.ts"]
},
"libs/aztec_contracts": {
"project": []
},
"libs/ts/base-utils": {
"entry": ["src/**/*.spec.ts", "src/**/*.spec-d.ts", "src/**/*.test.ts"],
"project": ["src/**/*.ts"]
},
"libs/ts/config-types": {
"entry": ["tests/**/*.ts"],
"project": ["src/**/*.ts", "tests/**/*.ts"]
},
"libs/ts/contracts": {
"entry": ["scripts/**/*.ts", "tasks/**/*.ts", "test/**/*.ts"],
"project": [
"lib/**/*.ts",
"scripts/**/*.ts",
"tasks/**/*.ts",
"@types/**/*.ts",
"test/**/*.ts"
]
},
"libs/ts/decoders": {
"entry": ["src/**/*.ts"],
"project": ["src/**/*.ts", "test/**/*.ts"]
},
"libs/ts/docs-ui": {
"project": ["src/**/*.{ts,tsx}"]
},
"libs/ts/esbuild-react-compiler-plugin": {
"project": ["src/**/*.ts"]
},
"libs/ts/nextra-theme-docs": {
"entry": ["src/**/*.{ts,tsx}"],
"project": ["src/**/*.{ts,tsx}"]
},
"libs/ts/onchain-interactions": {
"entry": ["src/scripts/**/*.ts", "src/utils.ts", "src/types.ts"],
"project": ["src/**/*.ts"]
},
"libs/ts/sol-reflector": {
"entry": [
"src/hardhat/**/*.ts",
"src/utils/**/*.ts",
"src/@types/**/*.ts"
],
"project": ["src/**/*.ts"]
},
"libs/ts/ui": {
"project": ["src/**/*.{ts,tsx}"]
}
}
}