-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathknip.json
More file actions
70 lines (70 loc) · 1.46 KB
/
Copy pathknip.json
File metadata and controls
70 lines (70 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "https://unpkg.com/knip@6/schema.json",
"tags": [
"-lintignore"
],
"ignoreBinaries": [
"mike",
"mkdocs",
"python3",
"compodoc",
"openapi-ts"
],
"ignoreUnresolved": [
"tslib"
],
"workspaces": {
".": {
"entry": [
"scripts/**/*.{ts,js}"
],
"project": [
"scripts/**/*.{ts,js}"
],
"ignoreDependencies": [
"@semantic-release/git",
"@semantic-release/github",
"@semantic-release/npm",
"@codedependant/semantic-release-docker",
"@types/k6",
"k6"
]
},
"apps/backend": {
"entry": [
"src/main.ts",
"src/tracing.ts",
"src/database/data-source.ts",
"src/database/migrations/*.ts",
"test/**/*.e2e-spec.ts"
],
"ignore": [
"src/**/generated/**",
"src/registrar/generated/**"
],
"ignoreDependencies": [
"ts-loader",
"tsconfig-paths",
"source-map-support",
"@compodoc/compodoc",
"pino-pretty",
"pino-opentelemetry-transport"
]
},
"apps/client": {
"entry": [
"src/**/*.spec.ts",
"e2e/**/*.ts"
],
"ignoreDependencies": [
"@angular/platform-browser-dynamic",
"@fontsource/roboto",
"material-icons",
"eslint-config-prettier",
"eslint-plugin-prettier"
]
},
"apps/webhook": {},
"packages/eudiplo-sdk-core": {}
}
}