Skip to content

Commit

Permalink
style: formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Jul 30, 2023
1 parent 080163b commit 279f744
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/ts-writer/src/writer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ export class TsWriter<
* @param optionsOrTsconfigPath Either the compiler options or the path to a tsconfig
* file.
*/
constructor(optionsOrTsconfigPath: ts.CompilerOptions | string, readonly helpers?: H) {
constructor(
optionsOrTsconfigPath: ts.CompilerOptions | string,
readonly helpers?: H
) {
this.compilerOptions =
typeof optionsOrTsconfigPath === 'string'
? readCompilerOptions(optionsOrTsconfigPath)
Expand Down

0 comments on commit 279f744

Please sign in to comment.