forked from element-hq/element-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.ts
More file actions
138 lines (133 loc) · 4.94 KB
/
Copy pathknip.ts
File metadata and controls
138 lines (133 loc) · 4.94 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
Copyright 2026 Element Creations Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
import { type KnipConfig } from "knip";
// Specify this as knip loads config files which may conditionally load plugins
process.env.GITHUB_ACTIONS = "1";
export default {
workspaces: {
"packages/shared-components": {
entry: ["src/index.ts!", "scripts/**"],
project: [
"**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}!",
"!scripts/**!",
"!src/test/**!",
"!src/**/test-*!",
"!src/**/*-{mock,mocks,snapshot,actions}.*!",
],
},
"packages/playwright-common": {
entry: ["src/fixtures/index.ts!", "src/testcontainers/index.ts!"],
project: [
"**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}!",
"!src/flaky-reporter.ts!",
"!src/stale-screenshot-reporter.ts!",
],
ignoreDependencies: [
// Used in playwright-screenshots.sh
"wait-on",
],
ignoreBinaries: ["awk", "printf"],
},
"packages/module-api": {},
"apps/web": {
entry: [
"src/serviceworker/index.ts!",
"src/workers/*.worker.ts!",
"src/utils/exportUtils/exportJS.js!",
"src/vector/localstorage-fix.ts!",
"scripts/**",
"playwright/**",
"test/**",
"res/decoder-ring/**",
"res/jitsi_external_api.min.js",
"res/themes/*/css/*.pcss",
"I18nWebpackPlugin.ts!",
"module_system/**!",
// Keep for now
"src/hooks/useLocalStorageState.ts!",
"src/hooks/useIsReleaseAnnouncementOpen.ts!",
"src/components/structures/ReleaseAnnouncement.tsx!",
"src/utils/arrays.ts!",
"src/utils/EventPresentationContextProvider.tsx!",
// This is just an awful side-effect import
"src/stores/LifecycleStore.ts!",
],
project: [
"**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}!",
"!scripts/**!",
"!src/test/**!",
"!recorder-worklet-loader.cjs!",
"!src/**/*-{mock,mocks,snapshot,actions}.*!",
],
ignoreDependencies: [
// False positive
"sw.js",
// Used by webpack
"process",
"util",
// Embedded into webapp
"@element-hq/element-call-embedded",
// Used by matrix-js-sdk, which means we have to include them as a
// dependency so that // we can run `tsc` (since we import the typescript
// source of js-sdk, rather than the transpiled and annotated JS like you
// would with a normal library).
"@types/sdp-transform",
],
},
"apps/desktop": {
entry: ["src/preload.cts!", "electron-builder.ts!", "scripts/**", "hak/**"],
project: ["**/*.{js,ts}"],
ignoreDependencies: [
// Brought in via hak scripts
"matrix-seshat",
],
ignoreBinaries: [
// Used to build seshat (optional)
"rustc",
// Used by the fetch-package script (optional)
"gpg",
// Used for the macOS universal builds
"lipo",
],
},
"modules": {
project: ["**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}!", "!playwright/**!"],
},
"modules/*": {
entry: ["src/index.ts{x,}!"],
project: ["**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}!", "!src/tests/**!", "!e2e/**!"],
},
".": {
entry: ["scripts/**", "docs/**"],
},
},
ignoreDependencies: [
// Used by multiple packages, raises a false positive for some reason
"events",
// Used as a workaround for api-extractor not supporting typescript 7.0
"@typescript/old",
],
ignoreExportsUsedInFile: true,
ignoreBinaries: [
// Optional for coverage:diff development script
"diff-cover",
],
compilers: {
pcss: (text: string) =>
[...text.matchAll(/@import\s+(?:url\()?["']([^"']+)["']\)?[^;]*;/g)]
.map(([, specifier]) => `import "${specifier}";`)
.join("\n"),
},
nx: {
config: ["{nx,package,project}.json", "{apps,packages,modules}/**/{package,project}.json"],
},
playwright: {
config: ["playwright.config.ts", "playwright-merge.config.ts"],
},
tags: ["-knipignore"],
treatConfigHintsAsErrors: true,
treatTagHintsAsErrors: true,
} satisfies KnipConfig;