mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-16 05:03:11 +08:00
9 lines
192 B
JavaScript
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'),
|
|
});
|