File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " https://unpkg.com/knip@latest/schema.json" ,
3
- "entry" : [" src/index.ts!" ],
3
+ "entry" : [" ./src/*.ts" ],
4
+ "ignore" : [
5
+ " src/creators/files/createESLintConfigFile.ts" ,
6
+ " src/creators/files/createStandardTSConfigFile.ts" ,
7
+ " src/creators/utils.ts"
8
+ ],
4
9
"ignoreExportsUsedInFile" : { "interface" : true , "type" : true },
5
- "ignoreWorkspaces" : [" cases/**" ],
6
- "project" : [" src/**/*.ts!" ]
10
+ "ignoreWorkspaces" : [" cases/**" ]
7
11
}
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ export type CaseData = {
26
26
[ K in CaseEntry [ "label" ] ] : ( { label : K } & CaseEntry ) [ "values" ] [ number ] ;
27
27
} ;
28
28
29
- export type CaseTypes = CaseData [ "types" ] ;
30
-
31
29
export interface NamedCaseData extends CaseData {
32
30
name : string ;
33
31
}
You can’t perform that action at this time.
0 commit comments