Files
xverse-web-extension/knip.jsonc
Eduard Bardají Puig 911bd5e94b Use type imports and knip
2024-07-17 09:23:17 +01:00

26 lines
720 B
JSON

{
"$schema": "https://unpkg.com/knip@5/schema.json",
"entry": [
"src/background/background.ts",
"src/content-scripts/content-script.ts",
"src/inpage/index.ts",
"src/pages/Options/index.tsx",
"src/pages/Popup/index.tsx",
"webpack/utils/build.js",
"webpack/utils/devServer.js"
],
"project": ["src/**/*.{ts,tsx}", "webpack/**/*.js"],
"webpack": {
"config": ["webpack/webpack.config.js"]
},
"ignoreDependencies": [
// Used by webpack to polyfill references to Node.js's `path` module, yet
// not explicitly imported anywhere in the project.
"path",
// Used by the extension, yet not explicitly imported anywhere in the
// project.
"@types/chrome"
]
}