Skip to content

Commit 34453c0

Browse files
authored
Stop ignoring TS files (#1206)
1 parent 16afa97 commit 34453c0

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

uilib-docs/configurations/plugins.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ const componentsDocgenPlugin = [
3131
{
3232
resolve: 'gatsby-source-filesystem',
3333
options: {
34-
path: `${__dirname}/../../src/components/`,
35-
ignore: ['**/\*.tsx']
34+
path: `${__dirname}/../../src/components/`
3635
}
3736
}
3837
];
@@ -42,8 +41,7 @@ const incubatorComponentsDocgenPlugin = [
4241
{
4342
resolve: 'gatsby-source-filesystem',
4443
options: {
45-
path: `${__dirname}/../../src/incubator/`,
46-
ignore: ['**/\*.tsx']
44+
path: `${__dirname}/../../src/incubator/`
4745
}
4846
}
4947
];
@@ -53,8 +51,7 @@ const nativeComponentsDocgenPlugin = [
5351
{
5452
resolve: 'gatsby-source-filesystem',
5553
options: {
56-
path: `${__dirname}/../../lib/components/`,
57-
ignore: ['**/\*.tsx']
54+
path: `${__dirname}/../../lib/components/`
5855
}
5956
}
6057
];

0 commit comments

Comments
 (0)