Skip to content

Commit 306f801

Browse files
authored
Support JSX/TSX (#27)
1 parent 79723e9 commit 306f801

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

index.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,17 @@ module.exports = {
88
overrides: [
99
{
1010
files: [
11-
'*.js'
11+
'*.js',
12+
'*.jsx'
1213
],
1314
extends: [
1415
'plugin:jsdoc/recommended'
1516
]
1617
},
1718
{
1819
files: [
19-
'*.ts'
20+
'*.ts',
21+
'*.tsx'
2022
],
2123
plugins: [
2224
'tsdoc'

0 commit comments

Comments
 (0)