forked from secretkeylabs/xverse-web-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.jsonc
More file actions
25 lines (24 loc) · 720 Bytes
/
Copy pathknip.jsonc
File metadata and controls
25 lines (24 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"$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"
]
}