Skip to content

Commit b3ab25b

Browse files
authored
fix(cli): include additional tsconfig patterns in glob search (#43)
1 parent a164ff7 commit b3ab25b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class Project {
158158
process.exit(1);
159159
}
160160

161-
const tsconfigOptions = glob.sync('**/{tsconfig.json,jsconfig.json}');
161+
const tsconfigOptions = glob.sync('**/{tsconfig.json,tsconfig.*.json,jsconfig.json}');
162162

163163
let options = await Promise.all(
164164
tsconfigOptions.map(async tsconfigOption => {

0 commit comments

Comments
 (0)