You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Builds a project with a fix for https://github.com/microsoft/TypeScript/issues/39117',
106
-
builder: (command)=>{
107
-
returncommand.option('skipTsc',{
108
-
type: 'boolean',
109
-
default: false,
110
-
describe: 'Set to `true` if you want the legacy behavior of just copying .d.ts files.',
111
-
});
112
+
.command<HandlerArgv>(
113
+
'$0',
114
+
'Builds type definition files and copies them to the specified directories with a fix for https://github.com/microsoft/TypeScript/issues/39117',
115
+
(command)=>{
116
+
returncommand
117
+
.option('skipTsc',{
118
+
type: 'boolean',
119
+
default: false,
120
+
describe: 'Set to `true` if you want the legacy behavior of just copying .d.ts files.',
121
+
})
122
+
.option('copy',{
123
+
alias: 'c',
124
+
type: 'array',
125
+
description: 'Directories where the type definition files should be copied',
0 commit comments