Files
xverse-web-extension/knip.jsonc
2025-01-27 16:14:25 +02:00

32 lines
802 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",
// Used for linking xverse core locally
"process"
]
}