Skip to content

Commit

Permalink
fix logical-assignment-operators error
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Apr 24, 2024
1 parent 28ccd5d commit ffa769a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = class Config {
const ts = require('typescript');
const tsParsedConfig = ts.readJsonConfigFile(this.tsConfig, ts.sys.readFile);
const obj = ts.parseJsonSourceFileConfigFileContent(tsParsedConfig, ts.sys, path.dirname(this.tsConfig));
this.tsConfigPath = this.tsConfigPath || this.tsConfig;
this.tsConfigPath ||= this.tsConfig;
this.tsConfig = obj.raw;
}

Expand Down

0 comments on commit ffa769a

Please sign in to comment.