Skip to content

Commit

Permalink
Fixed regression in tsconfig path
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Oct 12, 2022
1 parent a4a2af6 commit 9595c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const main = async (options: UnresolvedConfiguration) => {
}
}

const projectOptions = tsConfigFilePath ? { tsConfigFilePath } : { compilerOptions: { allowJs: true } };
const projectOptions = tsConfigPath ? { tsConfigFilePath: tsConfigPath } : { compilerOptions: { allowJs: true } };

// Create workspace for entry files + resolved dependencies
const entryPaths = await resolvePaths({
Expand Down

0 comments on commit 9595c75

Please sign in to comment.