-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathknip.json
41 lines (41 loc) · 864 Bytes
/
knip.json
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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"ignoreWorkspaces": [
"packages/bridge-schema"
],
"ignore": [
"packages/bridge-schema/schema/**"
],
"workspaces": {
".": {
"entry": [
"scripts/*.ts",
"test/**"
]
},
"packages/bridge": {
"entry": [
"src/module.ts",
"src/runtime/**"
],
"ignore": [
"src/vite/stub-vite.cjs"
],
"ignoreDependencies": [
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-transform-typescript",
"@nuxt/cli",
"exit",
"mocked-exports",
"zhead"
]
},
"playground": {
"entry": [
"{components,layouts,middleware,pages,plugins,server,store}/**",
"*.ts"
]
}
}
}