Feature/#48 migrate to typescript #151

Merged
Serraniel merged 30 commits from feature/#48-migrate-to-typescript into develop 2020-12-30 17:24:49 +01:00
Showing only changes of commit f29de7f826 - Show all commits

View file

@ -126,7 +126,7 @@ gulp.task('scripts', () => {
modules.forEach(module => {
inputs.push(`${src.scripts}/${module}.ts`);
streams.push(source(`${module}.ts`));
streams.push(source(`${module}.js`));
});
const b = browserify(inputs, { debug: isDev });