Skip to content

Commit

Permalink
Changes to const
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jul 9, 2023
1 parent 3b3e3cc commit 7b0e481
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import {
} from 'get-tsconfig';
import type { LoaderOptions } from './types.js';

let foundTsconfigMap = new Map<string | undefined, TsConfigResult | null>();
let fileMatcherMap = new Map<string | undefined, FileMatcher>();
const foundTsconfigMap = new Map<string | undefined, TsConfigResult | null>();
const fileMatcherMap = new Map<string | undefined, FileMatcher>();

async function ESBuildLoader(
this: webpack.loader.LoaderContext,
Expand Down

0 comments on commit 7b0e481

Please sign in to comment.