-
Notifications
You must be signed in to change notification settings - Fork 8
/
knip.json
39 lines (39 loc) · 990 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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"ignore": ["**/dist/**"],
"ignoreBinaries": ["dot", "open", "publish"],
"ignoreDependencies": ["lerna", "lint-staged"],
"workspaces": {
"packages/*": {
"entry": ["source/index.ts"],
"project": ["source/**/*.{js,ts,vue}"]
},
"packages/documentation": {
"entry": [
"pages/**/*.vue",
"layouts/**/*.vue",
"plugins/**/*.js",
"nuxt.config.ts"
],
"ignoreDependencies": [
"@nuxt/typescript-build",
"@nuxtjs/markdownit-loader",
"@nuxtjs/markdownit",
"@nuxtjs/style-resources",
"sass-loader",
"ts-loader",
"vue-server-renderer",
"vue-template-compiler"
],
"project": ["**/*.{js,ts,vue}"]
},
"packages/kotti-ui": {
"entry": ["source/index.ts", "tokens/index.js"],
"ignoreDependencies": ["core-js", "normalize.css", "vue-tsc"],
"project": ["source/**/*.{js,ts,vue}"]
},
"packages/yoco": {
"entry": ["source/index.ts", "source/generate.ts"]
}
}
}