mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 20:26:19 +02:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
67 lines
2.1 KiB
TypeScript
67 lines
2.1 KiB
TypeScript
import { KnipConfig } from "knip";
|
|
|
|
export default {
|
|
workspaces: {
|
|
"packages/shared-components": {
|
|
entry: ["src/index.ts"],
|
|
},
|
|
".": {
|
|
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",
|
|
"docs/**",
|
|
],
|
|
ignore: [
|
|
// Keep for now
|
|
"src/hooks/useLocalStorageState.ts",
|
|
"src/hooks/useTimeout.ts",
|
|
"src/components/views/elements/InfoTooltip.tsx",
|
|
"src/components/views/elements/StyledCheckbox.tsx",
|
|
|
|
"packages/**/*",
|
|
],
|
|
},
|
|
},
|
|
ignoreDependencies: [
|
|
// Required for `action-validator`
|
|
"@action-validator/*",
|
|
// Used for git pre-commit hooks
|
|
"husky",
|
|
// Used by jest
|
|
"babel-jest",
|
|
// Used by babel
|
|
"@babel/runtime",
|
|
"@babel/plugin-transform-class-properties",
|
|
// Referenced in PCSS
|
|
"github-markdown-css",
|
|
// False positive
|
|
"sw.js",
|
|
// Used by webpack
|
|
"process",
|
|
"util",
|
|
// Embedded into webapp
|
|
"@element-hq/element-call-embedded",
|
|
// Transitive dep of jest
|
|
"@jest/globals",
|
|
"vitest-environment-jest-fixed-jsdom",
|
|
|
|
// We import this in some tests, transitive dep of @playwright/test
|
|
"playwright-core",
|
|
|
|
// 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/content-type",
|
|
"@types/sdp-transform",
|
|
],
|
|
ignoreExportsUsedInFile: true,
|
|
} satisfies KnipConfig;
|