mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-05-19 05:15:45 +00:00
16 lines
534 B
TypeScript
16 lines
534 B
TypeScript
// Copyright 2024, 2025 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
|
|
import type { KnipConfig } from "knip";
|
|
|
|
export default {
|
|
entry: ["src/main.tsx", "src/swagger.ts", "src/routes/*"],
|
|
ignore: ["src/gql/*", "src/routeTree.gen.ts", ".storybook/locales.ts"],
|
|
ignoreDependencies: [
|
|
// This is used by the tailwind PostCSS plugin, but not detected by knip
|
|
"postcss-nesting",
|
|
],
|
|
} satisfies KnipConfig;
|