File tree Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -43,43 +43,43 @@ codegen({
43
43
/**
44
44
* Run codegen on server start.
45
45
*
46
- * @defaultValue ` true`
46
+ * @default true
47
47
*/
48
48
runOnStart: boolean ,
49
49
/**
50
50
* Run codegen on build. Will prevent build if codegen fails.
51
51
*
52
- * @defaultValue ` true`
52
+ * @default true
53
53
*/
54
54
runOnBuild: boolean ,
55
55
/**
56
56
* Enable codegen integration with vite file watcher.
57
57
*
58
- * @defaultValue ` true`
58
+ * @default true
59
59
*/
60
60
enableWatcher: boolean ,
61
61
/**
62
62
* Throw an error if codegen fails on server start.
63
63
*
64
- * @defaultValue ` false`
64
+ * @default false
65
65
*/
66
66
throwOnStart: boolean ,
67
67
/**
68
68
* Throw an error if codegen fails on build.
69
69
*
70
- * @defaultValue ` true`
70
+ * @default true
71
71
*/
72
72
throwOnBuild: boolean ,
73
73
/**
74
74
* Run codegen when a document matches.
75
75
*
76
- * @defaultValue ` true`
76
+ * @default true
77
77
*/
78
78
matchOnDocuments: boolean ,
79
79
/**
80
80
* Run codegen when a schema matches.
81
81
*
82
- * @defaultValue ` false`
82
+ * @default false
83
83
*/
84
84
matchOnSchemas: boolean ,
85
85
/**
@@ -109,7 +109,7 @@ codegen({
109
109
/**
110
110
* Log various steps to aid in tracking down bugs.
111
111
*
112
- * @defaultValue ` false`
112
+ * @default false
113
113
*/
114
114
debug: boolean ,
115
115
});
Original file line number Diff line number Diff line change @@ -15,43 +15,43 @@ export interface Options {
15
15
/**
16
16
* Run codegen on server start.
17
17
*
18
- * @defaultValue ` true`
18
+ * @default true
19
19
*/
20
20
runOnStart ?: boolean ;
21
21
/**
22
22
* Run codegen on build. Will prevent build if codegen fails.
23
23
*
24
- * @defaultValue ` true`
24
+ * @default true
25
25
*/
26
26
runOnBuild ?: boolean ;
27
27
/**
28
28
* Enable codegen integration with vite file watcher.
29
29
*
30
- * @defaultValue ` true`
30
+ * @default true
31
31
*/
32
32
enableWatcher ?: boolean ;
33
33
/**
34
34
* Throw an error if codegen fails on server start.
35
35
*
36
- * @defaultValue ` false`
36
+ * @default false
37
37
*/
38
38
throwOnStart ?: boolean ;
39
39
/**
40
40
* Throw an error if codegen fails on build.
41
41
*
42
- * @defaultValue ` true`
42
+ * @default true
43
43
*/
44
44
throwOnBuild ?: boolean ;
45
45
/**
46
46
* Run codegen when a document matches.
47
47
*
48
- * @defaultValue ` true`
48
+ * @default true
49
49
*/
50
50
matchOnDocuments ?: boolean ;
51
51
/**
52
52
* Run codegen when a schema matches.
53
53
*
54
- * @defaultValue ` false`
54
+ * @default false
55
55
*/
56
56
matchOnSchemas ?: boolean ;
57
57
/**
@@ -81,7 +81,7 @@ export interface Options {
81
81
/**
82
82
* Log various steps to aid in tracking down bugs.
83
83
*
84
- * @defaultValue ` false`
84
+ * @default false
85
85
*/
86
86
debug ?: boolean ;
87
87
}
You can’t perform that action at this time.
0 commit comments