-
-
Notifications
You must be signed in to change notification settings - Fork 3k
/
.knip.jsonc
40 lines (40 loc) · 939 Bytes
/
.knip.jsonc
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
32
33
34
35
36
37
38
39
40
{
"$schema": "https://unpkg.com/knip@5/schema-jsonc.json",
"entry": [
"bin/mocha.js!",
"bin/_mocha!",
"browser-entry.js!",
"index.js!",
"lib/cli/index.js!",
".eleventy.js",
"karma.conf.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": [
"@mocha/docdash",
"coffeescript",
"fake",
"jsdoc-ts-utils",
"karma-chrome-launcher",
"karma-mocha-reporter",
"karma-mocha",
"karma-sauce-launcher",
"non-existent-package",
"prettier"
],
"mocha": {
"entry": ["test/**/*.{js,ts,mjs,cjs}"]
},
"webpack": {
"config": "test/browser-specific/fixtures/webpack/webpack.config.js"
},
"rules": {
"exports": "off"
}
}