Skip to content

Commit fd8777e

Browse files
committed
change let to const in tsconfig.ts
1 parent 05a29b6 commit fd8777e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/utils/options/readers/tsconfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class TSConfigReader extends OptionsComponent {
5151
return;
5252
}
5353

54-
let { config } = ts.readConfigFile(fileName, ts.sys.readFile);
54+
const { config } = ts.readConfigFile(fileName, ts.sys.readFile);
5555
if (config === undefined) {
5656
event.addError('The tsconfig file %s does not contain valid JSON.', fileName);
5757
return;

0 commit comments

Comments
 (0)