-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy path.knip.jsonc
More file actions
31 lines (31 loc) · 795 Bytes
/
.knip.jsonc
File metadata and controls
31 lines (31 loc) · 795 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
26
27
28
29
30
31
{
"$schema": "https://unpkg.com/knip@6/schema-jsonc.json",
"entry": [
"bin/mocha.js!",
"bin/_mocha!",
"browser-entry.js!",
"docs/_data/supporters.cjs",
"index.js!",
"lib/cli/index.js!",
],
"project": ["{bin,lib,scripts,test}/**/*.{js,ts,mjs,cjs}"],
"ignore": [
"test/integration/fixtures/esm/type-module/test-that-imports-non-existing-module.fixture.js",
"test/integration/fixtures/options/watch/test-with-dependency.fixture.js",
],
"ignoreDependencies": [
"@test/esm-only-loader",
"coffeescript",
"fake",
"non-existent-package",
],
"mocha": {
"entry": ["test/**/*.{js,ts,mjs,cjs}"],
},
"webpack": {
"config": "test/browser-specific/fixtures/webpack/webpack.config.js",
},
"rules": {
"exports": "off",
},
}