Uncaught (in promise) RangeError: Maximum call stack size exceeded
at self (eval at build (compiler.ts:95:20), <anonymous>:16:20)
at deserialize2 (serializer-facade.ts:52:12)
Only happens in the browser when using deserialize because there's a stricter limitation on call stack size
type Hour24 =
| '00'
| '01'
| '02'
| '03'
| '04'
| '05'
| '06'
| '07'
| '08'
| '09'
| '10'
| '11'
| '12'
| '13'
| '14'
| '15'
| '16'
| '17'
| '18'
| '19'
| '20'
| '21'
| '22'
| '23';
type Minute =
| '00'
| '01'
| '02'
| '03'
| '04'
| '05'
| '06'
| '07'
| '08'
| '09'
| '10'
| '11'
| '12'
| '13'
| '14'
| '15'
| '16'
| '17'
| '18'
| '19'
| '20'
| '21'
| '22'
| '23'
| '24'
| '25'
| '26'
| '27'
| '28'
| '29'
| '30'
| '31'
| '32'
| '33'
| '34'
| '35'
| '36'
| '37'
| '38'
| '39'
| '40'
| '41'
| '42'
| '43'
| '44'
| '45'
| '46'
| '47'
| '48'
| '49'
| '50'
| '51'
| '52'
| '53'
| '54'
| '55'
| '56'
| '57'
| '58'
| '59';
type Second =
| '00'
| '01'
| '02'
| '03'
| '04'
| '05'
| '06'
| '07'
| '08'
| '09'
| '10'
| '11'
| '12'
| '13'
| '14'
| '15'
| '16'
| '17'
| '18'
| '19'
| '20'
| '21'
| '22'
| '23'
| '24'
| '25'
| '26'
| '27'
| '28'
| '29'
| '30'
| '31'
| '32'
| '33'
| '34'
| '35'
| '36'
| '37'
| '38'
| '39'
| '40'
| '41'
| '42'
| '43'
| '44'
| '45'
| '46'
| '47'
| '48'
| '49'
| '50'
| '51'
| '52'
| '53'
| '54'
| '55'
| '56'
| '57'
| '58'
| '59';
type ClockHour24 = `${Hour24}:${Minute}:${Second}`;
deserialize<ClockHour24>('01:01:59');
Only happens in the browser when using
deserializebecause there's a stricter limitation on call stack size