storybook/scripts/watch-tsc.js
Kai Roeder 65b8c31a95 Rename dev:js to dev:babel and dev:ts to dev:tsc since babel does ts-compiling as well
- dev:tsc is still a thing because of angular that won't compile with babel
2019-03-03 19:36:15 +01:00

9 lines
192 B
JavaScript

const { tscfy } = require('./compile-tsc');
tscfy({
watch: true,
silent: false,
// eslint-disable-next-line no-console
errorCallback: () => console.error('Failed to compile ts'),
});