Files
github-stats-extended/knip.jsonc
T
Martin 8a7642db54 upgrade pnpm, update knip config (#94)
After upgrading knip via dependabot it said that the "src/index.tsx"
entrypoint is redundant.
2026-02-21 17:14:29 +01:00

40 lines
1.0 KiB
JSON

{
"$schema": "./node_modules/knip/schema.json",
"workspaces": {
"apps/backend": {
"jest": {
"config": [
"jest.config.js",
"jest.*.config.js",
"package.json" // included by default, see https://knip.dev/reference/plugins/jest
]
},
"entry": [
"api-renamed/*.js",
"express.js",
"jest.*.js",
"tests/bench/*.bench.js"
],
"ignoreFiles": [
"_dot_vercel_copy/**/*" // Hopefully by using a npm package this file will be removed
],
"ignoreDependencies": [
"jest" // used by test scripts referencing binary due to lack of ESM support
]
},
"apps/frontend": {
"entry": ["src/wakatime-override.ts"],
"ignoreDependencies": [
// below dependencies are added because backend folder is copied inside frontend folder,
// so some of his dependencies must be present here
"github-username-regex",
"emoji-name-map",
"word-wrap"
]
}
}
}