mirror of
https://github.com/vector-im/element-web.git
synced 2025-11-10 21:21:10 +01:00
* Add missing dependencies on `@types` packages Because we import the typescript source from matrix-js-sdk rather than the `.d.ts` files, `tsc` ends up type-checking the js-sdk source. That means that we need to have the `@types` packages that js-sdk needs. * Add missing type definitions for `setInterval` and `setTimeout` Our source assumes that `setTimeout` returns a number, not a `Timeout`. If we `yarn link` js-sdk, then (somehow) we end up using the definitions from there, but it's not really correct. * Configure knip to ignore new deps
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
import { KnipConfig } from "knip";
|
|
|
|
export default {
|
|
entry: [
|
|
"src/vector/index.ts",
|
|
"src/serviceworker/index.ts",
|
|
"src/workers/*.worker.ts",
|
|
"src/utils/exportUtils/exportJS.js",
|
|
"scripts/**",
|
|
"playwright/**",
|
|
"test/**",
|
|
"res/decoder-ring/**",
|
|
"res/jitsi_external_api.min.js",
|
|
"docs/**",
|
|
// Used by jest
|
|
"__mocks__/maplibre-gl.js",
|
|
],
|
|
project: ["**/*.{js,ts,jsx,tsx}"],
|
|
ignore: [
|
|
// Keep for now
|
|
"src/hooks/useLocalStorageState.ts",
|
|
"src/hooks/useTimeout.ts",
|
|
"src/components/views/elements/InfoTooltip.tsx",
|
|
"src/components/views/elements/StyledCheckbox.tsx",
|
|
],
|
|
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",
|
|
|
|
// 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",
|
|
],
|
|
ignoreBinaries: [
|
|
// Used in scripts & workflows
|
|
"jq",
|
|
],
|
|
ignoreExportsUsedInFile: true,
|
|
} satisfies KnipConfig;
|