forked from pixijs/pixijs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.knip.jsonc
36 lines (36 loc) · 1015 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
{
"entry": [
// Bundle entry points
"src/index.ts",
"src/bundle.*.ts",
"src/*/index.ts",
// Sub-module exports
"src/**/init.ts",
// Convention for worker files
"src/**/*.worker.ts",
// Convention for test files
"tests/visual/**/*.scene.ts",
// Scripts called from package.json using ts-node
"scripts/index/index.ts",
"scripts/types/fixTypes.ts",
"scripts/utils/autoGenerateUnsafeEvalFunctions.ts",
// 3rd party configurations,
"dts.config.js"
],
"project": [
"src/**/*.ts",
"scripts/**/*.{ts,js}",
"tests/**/*.ts",
"*.{mjs,js,json}",
"types/**/*.d.ts"
],
"ignoreDependencies": [
// Not detected in webdoc.config.js
"@pixi/webdoc-template",
// Not detected in jest setup
"http-server",
// Used internaly as dependences like "node:*" or "worker:*"
"node",
"worker"
]
}