Files
github-stats-extended/knip.jsonc
T
Martin acf7b16ac9 reactivate some old workflows, remove some old workflows (#80)
I deleted most workflows from apps/backend/.github/workflows because imo
we don't need them in the near future. I updated and moved two workflows
which we do need. Only the codeQL workflow is left behind, because I
don't have an opinion yet whether it should be removed or kept.
2026-02-16 08:32:28 +01:00

36 lines
943 B
JSON

{
"$schema": "./node_modules/knip/schema.json",
"workspaces": {
"apps/backend": {
"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/index.tsx",
"src/dotenv-browser-stub.ts", // referenced by vite.config.ts
"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"
]
}
}
}