dts-generator icon indicating copy to clipboard operation
dts-generator copied to clipboard

verbose: true - seemingly does nothing

Open scniro opened this issue 8 years ago • 1 comments

var dts = require('dts-generator');

dts.default({
    name: 'woah',
    project: './',
    verbose: true,
    exclude: ['./this/**, '.that/**'],
    out: 'package-name.d.ts'
});

Nothing printed to the console. Am I missing something?

scniro avatar Nov 01 '16 01:11 scniro

Late comment, but I ran into this as well. Add

sendMessage: console.log

to the options.

jeffsim avatar Dec 10 '16 15:12 jeffsim