-
-
Notifications
You must be signed in to change notification settings - Fork 517
Expand file tree
/
Copy pathknip.jsonc
More file actions
51 lines (51 loc) · 1.06 KB
/
knip.jsonc
File metadata and controls
51 lines (51 loc) · 1.06 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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
".": {
"entry": [
"build.config.ts",
"src/module.ts",
"src/runtime/{plugins,components,composables}/**",
"src/runtime/server/**",
"src/runtime/kit/**",
"scripts/*",
"specs/utils/nitro-plugin.ts"
],
"ignoreUnresolved": [
// virtuals
"#app",
"#nuxt-i18n/*",
"#internal/i18n*",
"#internal/nuxt.config.mjs",
"#build/i18n-route-resources.mjs"
],
"ignoreDependencies": [
// auto imports
"@intlify/utils"
],
"ignore": [
"{specs,test}/{fixtures,mocks}/**"
]
},
"docs": {
"entry": [
"{components,layouts,pages,plugins,server}/**",
"{app,error}.vue",
"*.ts"
]
},
"playground": {
"entry": [
"{app,server}/**",
"{app,error}.vue",
"*.ts"
],
"ignore": [
"i18n/**"
],
"ignoreDependencies": [
"@nuxtjs/i18n"
]
}
}
}