Addressed a performance regression introduced in 1.1.314 due to a switch from ts-loader to esbuild-loader in our build pipeline. This change resulted in a 7-9% performance degradation, so I'm reverting it for now.

This commit is contained in:
Eric Traut 2023-08-06 10:29:45 -07:00
parent 44706adbb2
commit 7444078896
2 changed files with 4 additions and 4 deletions

View File

@ -46,9 +46,9 @@ module.exports = (_, { mode }) => {
rules: [
{
test: /\.ts$/,
loader: 'esbuild-loader',
loader: 'ts-loader',
options: {
tsconfig: 'tsconfig.json',
configFile: 'tsconfig.json',
},
},
{

View File

@ -48,9 +48,9 @@ module.exports = (_, { mode }) => {
rules: [
{
test: /\.ts$/,
loader: 'esbuild-loader',
loader: 'ts-loader',
options: {
tsconfig: 'tsconfig.json',
configFile: 'tsconfig.json',
},
},
],