i am trying to deploy the latest release (2.5.9) t...
# developers
k
i am trying to deploy the latest release (2.5.9) to railway but coming into lots of issues with the swagger and appStore folders. swagger was breaking on needing noImplicitAny: false in the TS config and I've had to fix a few spots like this:
Copy code
// from:
      const calendarsToGetAppointmentsFrom = [];

// to:
      // eslint-disable-next-line @typescript-eslint/no-explicit-any
      const calendarsToGetAppointmentsFrom: any[] = [];
same type of error over and over (see screenshot) is there a known fix for this? i imagine its a TSConfig change. thanks for any help!
wondering if i'm totally just off in the wrong direction. i have more TS errors in app-store. basically anything that isn't given a type def and is set to null or [] is breaking the compilation step.