public async readSetting()

in src/Trekin.ts [23:32]


  public async readSetting(filePath: string | undefined = undefined) {
    this.guardian = new SettingGuardian(
      JSON5.parse(
        fs.readFileSync(
          filePath !== undefined ? filePath : this.defaultSettingPath,
          "utf-8"
        )
      )
    );
  }