Add .ts exts to the getPossibleStoriesFiles

This commit is contained in:
igor 2018-01-04 10:12:29 +02:00
parent afc322f246
commit 2ef02fc0aa

View File

@ -11,6 +11,8 @@ export function getPossibleStoriesFiles(storyshotFile) {
return [
path.format({ dir: path.dirname(dir), name, ext: '.js' }),
path.format({ dir: path.dirname(dir), name, ext: '.jsx' }),
path.format({ dir: path.dirname(dir), name, ext: '.ts' }),
path.format({ dir: path.dirname(dir), name, ext: '.tsx' }),
];
}