For my TypeScript project I'm using BrowserSync to check results of my work. I'm trying to log some of my application states via console.log in a TypeScript code.
My Gulp tasks:
gulp.task('watch', ['browserSync'], function (){
gulp.watch('app/scss/**/*.scss', ['sass']);
gulp.watch(paths.tscripts.src, ['compile']);
gulp.watch('app/*.html', browserSync.reload);
gulp.watch('app/js/**/*.js', browserSync.reload);
});
gulp.task('browserSync', function() {
browserSync.init({
server: {
baseDir: 'app'
},
})
});
I don't get any feedback neither from a Windows cmd (in which I'm running the Gulp 'watch' task) nor in a browser console (in a DevTools [F12])
What is the default target for a console.log and how can I set it up to work?