freeCodeCamp/knip.jsonc

28 lines
639 B
Plaintext
Raw Normal View History

{
"$schema": "https://unpkg.com/knip@1/schema.json",
"ignore": "**/*.d.ts",
// Only workspaces with a configuration below are analyzed by Knip
"workspaces": {
".": {
// No custom entry/project files in root workspace to not interfere with workspaces that are not set up yet
2024-06-14 17:09:40 +00:00
"entry": []
},
"client": {
"webpack": "webpack-workers.js",
"ignore": ["**/__mocks__"]
},
"client/plugins/*": {
"entry": "gatsby-node.js"
},
"tools/scripts/build": {
"entry": ["*.ts"]
}
},
"ignoreDependencies": [
// framerunner throws error if removed
"@babel/runtime"
]
}