-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
34 lines (34 loc) · 983 Bytes
/
Copy pathknip.json
File metadata and controls
34 lines (34 loc) · 983 Bytes
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
{
"$schema": "https://unpkg.com/knip@6/schema.json",
"ignoreWorkspaces": ["bench", "docs", "examples/*", "packages/wasm"],
"workspaces": {
"packages/core": {
"entry": [
"src/index.ts",
"src/adapter.ts",
"src/indexeddb.ts",
"src/shell.ts",
"src/testing.ts",
"src/worker.ts",
"test/**/*.test.ts"
],
"project": ["src/**/*.ts", "test/**/*.ts"]
},
"packages/react": {
"entry": ["src/index.tsx", "test/**/*.test.ts?(x)"],
"project": ["src/**/*.ts?(x)", "test/**/*.ts?(x)"]
},
"packages/svelte": {
"entry": ["src/*.svelte", "test/**/*.test.ts"],
"project": ["src/**/*.ts", "test/**/*.ts"]
},
"packages/vue": {
"entry": ["src/index.ts", "test/**/*.test.ts"],
"project": ["src/**/*.ts", "test/**/*.ts"]
},
"packages/xlsx": {
"entry": ["src/index.ts", "test/**/*.test.ts"],
"project": ["src/**/*.ts", "test/**/*.ts"]
}
}
}