migrate: make workers work again

This commit is contained in:
Johannes Millan 2024-06-18 20:56:52 +02:00
parent 73099b1737
commit 1404b15a3e
3 changed files with 23 additions and 40 deletions

View file

@ -11,31 +11,14 @@
"url": "git://github.com/johannesjo/super-productivity.git"
},
"browserslist": {
"production": [
"> 0.8%",
"last 2 versions",
"not dead",
"not IE 9-11",
"not edge < 79",
"not baidu < 10",
"not ie_mob < 12",
"not kaios < 5",
"not op_mini all",
"not op_mob < 60",
"not bb < 14",
"not and_uc < 13",
"not and_qq < 2"
"development": [
"defaults and fully supports es6-module"
],
"TODO_USE_THOSE": [
"supports es6-module",
"not dead",
"not IE <= 11",
"not ios_saf 10.3",
"not safari 10.1",
"not edge 16-17"
"production": [
"defaults and fully supports es6-module"
],
"modern": [
"supports es6-module"
"defaults and fully supports es6-module"
]
},
"keywords": [

View file

@ -1,17 +1,17 @@
<!--<owl-date-time-inline-->
<!-- (doubleEnter)="submit()"-->
<!-- (ngModelChange)="updateDateFromCal($event)"-->
<!-- [firstDayOfWeek]="(firstDayOfWeek$|async)"-->
<!-- [isNoMonthSquares]="true"-->
<!-- [laterTodaySlots]="laterTodaySlots"-->
<!-- [min]="now"-->
<!-- [ngModelOptions]="{standalone:true}"-->
<!-- [ngModel]="date"-->
<!-- [sLaterToday]="T.DATETIME_SCHEDULE.LATER_TODAY|translate"-->
<!-- [sNextWeek]="T.DATETIME_SCHEDULE.NEXT_WEEK|translate"-->
<!-- [sPlaceholder]="T.DATETIME_SCHEDULE.PLACEHOLDER|translate"-->
<!-- [sPressEnterToSubmit]="T.DATETIME_SCHEDULE.PRESS_ENTER_AGAIN|translate"-->
<!-- [sTomorrow]="T.DATETIME_SCHEDULE.TOMORROW|translate"-->
<!-- name="owlDate"-->
<!-- ngDefaultControl-->
<!--&gt;</owl-date-time-inline>-->
<owl-date-time-inline
(doubleEnter)="submit()"
(ngModelChange)="updateDateFromCal($event)"
[firstDayOfWeek]="(firstDayOfWeek$|async)"
[isNoMonthSquares]="true"
[laterTodaySlots]="laterTodaySlots"
[min]="now"
[ngModelOptions]="{standalone:true}"
[ngModel]="date"
[sLaterToday]="T.DATETIME_SCHEDULE.LATER_TODAY|translate"
[sNextWeek]="T.DATETIME_SCHEDULE.NEXT_WEEK|translate"
[sPlaceholder]="T.DATETIME_SCHEDULE.PLACEHOLDER|translate"
[sPressEnterToSubmit]="T.DATETIME_SCHEDULE.PRESS_ENTER_AGAIN|translate"
[sTomorrow]="T.DATETIME_SCHEDULE.TOMORROW|translate"
name="owlDate"
ngDefaultControl
></owl-date-time-inline>

View file

@ -5,7 +5,7 @@
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "ESNext",
"module": "es2022",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,