-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathknip.json
40 lines (40 loc) · 892 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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"rules": {
"duplicates": "off"
},
"workspaces": {
".": {
"entry": ["scripts/*", "playground/*"]
},
"docs": {
"entry": [".vitepress/config.ts"]
},
"packages/vite-plugin-checker": {
"entry": [
"tsup.config.ts",
"src/**/*.ts",
"__tests__/fixtures/tsDiagnostic.ts"
],
"ignoreDependencies": [
"@vue/language-core",
"eslint",
"meow",
"stylelint",
"vls",
"vue-tsc"
]
},
"playground/backend-integration": {
"entry": ["vite.config.js", "src/*.{js,ts,tsx}", "__test__/serve.js"]
},
"playground/vls-vue2": {
"entry": ["vetur.config.cjs", "src/**/*"],
"ignoreDependencies": [
"tslib",
"vue-class-component",
"vue-property-decorator"
]
}
}
}