Skip to content

Commit 2d3b43a

Browse files
committed
Fix formatting
1 parent 15cc32c commit 2d3b43a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/EsbuildPlugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class EsbuildPlugin implements Plugin {
6262
this.config = config;
6363
this.logger = logger;
6464
if (this.esbuildConfig.tsconfig) {
65-
const parsedTsconfig = await parseTsconfig(this.esbuildConfig.tsconfig);
65+
const parsedTsconfig = await parseTsconfig(this.esbuildConfig.tsconfig);
6666
this.tsconfigRaw = JSON.stringify(parsedTsconfig);
6767
}
6868
}

test/ts.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,11 @@ class Bar {
123123
},
124124
esbuildPlugin({
125125
ts: true,
126-
tsconfig: path.join(__dirname, 'fixture', 'tsconfig-with-experimental-decorators-parent.json'),
126+
tsconfig: path.join(
127+
__dirname,
128+
'fixture',
129+
'tsconfig-with-experimental-decorators-parent.json',
130+
),
127131
}),
128132
],
129133
});

0 commit comments

Comments
 (0)