Is there a specific reason why the Luxon DateTime offset is the opposite of the native JavaScript Date getTimezoneOffset?
import { DateTime } from 'luxon';
const luxonOffset = DateTime.now().offset; // -600
const jsDateOffset = new Date().getTimezoneOffset(); // 600
I made a small example here: https://stackblitz.com/edit/typescript-w4vz2u?file=index.ts
The screenshot above is from Hawaii timezone...

I believe that this is the code from Luxon which inverts the offset: https://github.com/moment/luxon/blob/master/src/zones/systemZone.js#L48-L50
