File tree 3 files changed +11
-9
lines changed
3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -722,6 +722,10 @@ declare module 'jest-allure2-reporter' {
722
722
}
723
723
724
724
export type LabelName =
725
+ | KnownLabelName
726
+ | string ;
727
+
728
+ export type KnownLabelName =
725
729
| 'epic'
726
730
| 'feature'
727
731
| 'owner'
@@ -734,16 +738,17 @@ declare module 'jest-allure2-reporter' {
734
738
| 'tag'
735
739
| 'testClass'
736
740
| 'testMethod'
737
- | 'thread'
738
- | ( string & { } ) ;
741
+ | 'thread' ;
739
742
740
743
export interface Link {
741
744
name ?: string ;
742
745
url : string ;
743
746
type ?: LinkType ;
744
747
}
745
748
746
- export type LinkType = 'issue' | 'tms' | ( string & { } ) ;
749
+ export type LinkType = KnownLinkType | string ;
750
+
751
+ export type KnownLinkType = 'issue' | 'tms' ;
747
752
748
753
export interface Parameter {
749
754
name : string ;
Original file line number Diff line number Diff line change 70
70
"prepare" : " husky install" ,
71
71
"prepack" : " tsc" ,
72
72
"build" : " tsc" ,
73
- "docs" : " typedoc" ,
74
73
"lint" : " eslint . --fix" ,
75
74
"lint:ci" : " eslint ." ,
76
75
"lint:staged" : " lint-staged" ,
104
103
"lint-staged" : " ^14.0.1" ,
105
104
"semantic-release" : " ^22.0.5" ,
106
105
"ts-jest" : " ^29.0.0" ,
107
- "typedoc" : " ^0.24.7" ,
108
- "typescript" : " 4.x.x"
106
+ "typescript" : " 5.x.x"
109
107
},
110
108
"dependencies" : {
111
109
"bunyamin" : " ^1.6.1" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
3
"target" : " es2022" ,
4
- "module" : " commonjs " ,
4
+ "module" : " node16 " ,
5
5
"moduleResolution" : " node16" ,
6
6
"importHelpers" : true ,
7
7
"downlevelIteration" : true ,
24
24
"esModuleInterop" : true ,
25
25
"skipLibCheck" : false ,
26
26
"forceConsistentCasingInFileNames" : true ,
27
- "importsNotUsedAsValues" : " error" ,
28
27
"rootDir" : " src" ,
29
28
"outDir" : " dist"
30
29
},
31
- "include" : [" src" ],
30
+ "include" : [" src" ]
32
31
}
You can’t perform that action at this time.
0 commit comments