We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0388204 commit acd58dcCopy full SHA for acd58dc
bin/typedoc.js
@@ -497,7 +497,7 @@ var td;
497
if (td.FS.statSync(realpath).isDirectory()) {
498
add(realpath);
499
}
500
- else if (/\.ts$/.test(realpath)) {
+ else if (/\.tsx?$/.test(realpath)) {
501
if (exclude && exclude.match(realpath.replace(/\\/g, '/'))) {
502
return;
503
src/td/Application.ts
@@ -435,7 +435,7 @@ module td
435
var realpath = Path.join(dirname, file);
436
if (FS.statSync(realpath).isDirectory()) {
437
438
- } else if (/\.ts$/.test(realpath)) {
+ } else if (/\.tsx?$/.test(realpath)) {
439
440
441
0 commit comments