diff --git a/Build/Sources/TypeScript/impexp/Resources/Public/TypeScript/ContextMenuActions.ts b/Build/Sources/TypeScript/impexp/Resources/Public/TypeScript/ContextMenuActions.ts
new file mode 100644
index 0000000000000000000000000000000000000000..8c1cc9e08f4fa05667302e6157de442a58de3abd
--- /dev/null
+++ b/Build/Sources/TypeScript/impexp/Resources/Public/TypeScript/ContextMenuActions.ts
@@ -0,0 +1,51 @@
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+/**
+ * Module: TYPO3/CMS/Impexp/ContextMenuActions
+ *
+ * JavaScript to handle import/export actions from context menu
+ * @exports TYPO3/CMS/Impexp/ContextMenuActions
+ */
+class ContextMenuActions {
+
+  public exportT3d(table: string, uid: number): void {
+    if (table === 'pages') {
+      top.TYPO3.Backend.ContentContainer.setUrl(
+        top.TYPO3.settings.ImportExport.moduleUrl +
+        '&tx_impexp[action]=export&' +
+        'id=0&tx_impexp[pagetree][id]=' + uid +
+        '&tx_impexp[pagetree][levels]=0' +
+        '&tx_impexp[pagetree][tables][]=_ALL',
+      );
+    } else {
+      top.TYPO3.Backend.ContentContainer.setUrl(
+        top.TYPO3.settings.ImportExport.moduleUrl +
+        '&tx_impexp[action]=export' +
+        '&tx_impexp[record][]=' + table + ':' + uid +
+        '&tx_impexp[external_ref][tables][]=_ALL',
+      );
+    }
+  }
+
+  public importT3d(table: string, uid: number): void {
+    top.TYPO3.Backend.ContentContainer.setUrl(
+      top.TYPO3.settings.ImportExport.moduleUrl +
+      '&id=' + uid +
+      '&table=' + table + '&tx_impexp[action]=import',
+    );
+  }
+}
+
+
+export = new ContextMenuActions();
diff --git a/Build/Sources/TypeScript/impexp/Resources/Public/TypeScript/ImportExport.ts b/Build/Sources/TypeScript/impexp/Resources/Public/TypeScript/ImportExport.ts
new file mode 100644
index 0000000000000000000000000000000000000000..1268c84ab89009bf7ea055378264e02437de0b4a
--- /dev/null
+++ b/Build/Sources/TypeScript/impexp/Resources/Public/TypeScript/ImportExport.ts
@@ -0,0 +1,50 @@
+/*
+ * This file is part of the TYPO3 CMS project.
+ *
+ * It is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License, either version 2
+ * of the License, or any later version.
+ *
+ * For the full copyright and license information, please read the
+ * LICENSE.txt file that was distributed with this source code.
+ *
+ * The TYPO3 project - inspiring people to share!
+ */
+
+import * as $ from 'jquery';
+import Modal = require('TYPO3/CMS/Backend/Modal');
+
+/**
+ * Module: TYPO3/CMS/Impexp/ImportExport
+ * JavaScript to handle confirm windows in the Import/Export module
+ * @exports TYPO3/CMS/Impexp/ImportExport
+ */
+class ImportExport {
+  constructor() {
+    $((): void => {
+      $(document).on('click', '.t3js-confirm-trigger', (e: JQueryEventObject): void => {
+        const $button = $(e.currentTarget);
+        Modal.confirm($button.data('title'), $button.data('message'))
+          .on('confirm.button.ok', (): void => {
+            $('#t3js-submit-field')
+              .attr('name', $button.attr('name'))
+              .closest('form').submit();
+            Modal.currentModal.trigger('modal-dismiss');
+          })
+          .on('confirm.button.cancel', (): void => {
+            Modal.currentModal.trigger('modal-dismiss');
+          });
+      });
+
+      $('.t3js-impexp-toggledisabled').on('click', (): void => {
+        const $checkboxes = $('table.t3js-impexp-preview tr[data-active="hidden"] input.t3js-exclude-checkbox');
+        if ($checkboxes.length) {
+          const $firstCheckbox = $checkboxes.get(0) as HTMLInputElement;
+          $checkboxes.prop('checked', !$firstCheckbox.checked);
+        }
+      });
+    });
+  }
+}
+
+export = new ImportExport();
diff --git a/typo3/sysext/impexp/Resources/Public/JavaScript/ContextMenuActions.js b/typo3/sysext/impexp/Resources/Public/JavaScript/ContextMenuActions.js
index 02c0ac543ca2527fe86fa071bf4a50ff02678b6b..58c30bacb9a1e98d7099c170e43974a3926f8098 100644
--- a/typo3/sysext/impexp/Resources/Public/JavaScript/ContextMenuActions.js
+++ b/typo3/sysext/impexp/Resources/Public/JavaScript/ContextMenuActions.js
@@ -10,47 +10,4 @@
  *
  * The TYPO3 project - inspiring people to share!
  */
-
-/**
- * Module: TYPO3/CMS/Impexp/ContextMenuActions
- *
- * JavaScript to handle import/export actions from context menu
- * @exports TYPO3/CMS/Impexp/ContextMenuActions
- */
-define(function() {
-  'use strict';
-
-  /**
-   * @exports TYPO3/CMS/Impexp/ContextMenuActions
-   */
-  var ContextMenuActions = {};
-
-  ContextMenuActions.exportT3d = function(table, uid) {
-    if (table === 'pages') {
-      top.TYPO3.Backend.ContentContainer.setUrl(
-        top.TYPO3.settings.ImportExport.moduleUrl +
-        '&tx_impexp[action]=export&' +
-        'id=0&tx_impexp[pagetree][id]=' + uid +
-        '&tx_impexp[pagetree][levels]=0' +
-        '&tx_impexp[pagetree][tables][]=_ALL'
-      );
-    } else {
-      top.TYPO3.Backend.ContentContainer.setUrl(
-        top.TYPO3.settings.ImportExport.moduleUrl +
-        '&tx_impexp[action]=export' +
-        '&tx_impexp[record][]=' + table + ':' + uid +
-        '&tx_impexp[external_ref][tables][]=_ALL'
-      );
-    }
-  };
-
-  ContextMenuActions.importT3d = function(table, uid) {
-    top.TYPO3.Backend.ContentContainer.setUrl(
-      top.TYPO3.settings.ImportExport.moduleUrl +
-      '&id=' + uid +
-      '&table=' + table + '&tx_impexp[action]=import'
-    );
-  };
-
-  return ContextMenuActions;
-});
+define(["require","exports"],function(t,e){"use strict";return new(function(){function t(){}return t.prototype.exportT3d=function(t,e){"pages"===t?top.TYPO3.Backend.ContentContainer.setUrl(top.TYPO3.settings.ImportExport.moduleUrl+"&tx_impexp[action]=export&id=0&tx_impexp[pagetree][id]="+e+"&tx_impexp[pagetree][levels]=0&tx_impexp[pagetree][tables][]=_ALL"):top.TYPO3.Backend.ContentContainer.setUrl(top.TYPO3.settings.ImportExport.moduleUrl+"&tx_impexp[action]=export&tx_impexp[record][]="+t+":"+e+"&tx_impexp[external_ref][tables][]=_ALL")},t.prototype.importT3d=function(t,e){top.TYPO3.Backend.ContentContainer.setUrl(top.TYPO3.settings.ImportExport.moduleUrl+"&id="+e+"&table="+t+"&tx_impexp[action]=import")},t}())});
\ No newline at end of file
diff --git a/typo3/sysext/impexp/Resources/Public/JavaScript/ImportExport.js b/typo3/sysext/impexp/Resources/Public/JavaScript/ImportExport.js
index a1643a063dd0b165f791c5550f63f4e35983a3a2..408465ffa1a2584bbf0d49018551b10988c4b80b 100644
--- a/typo3/sysext/impexp/Resources/Public/JavaScript/ImportExport.js
+++ b/typo3/sysext/impexp/Resources/Public/JavaScript/ImportExport.js
@@ -10,35 +10,4 @@
  *
  * The TYPO3 project - inspiring people to share!
  */
-
-/**
- * Module: TYPO3/CMS/Impexp/ImportExport
- * JavaScript to handle confirm windows in the Import/Export module
- * @exports TYPO3/CMS/Impexp/ImportExport
- */
-define(['jquery', 'TYPO3/CMS/Backend/Modal'], function($, Modal) {
-  'use strict';
-
-  $(function() {
-    $(document).on('click', '.t3js-confirm-trigger', function() {
-      var $button = $(this);
-      Modal.confirm($button.data('title'), $button.data('message'))
-        .on('confirm.button.ok', function() {
-          $('#t3js-submit-field')
-            .attr('name', $button.attr('name'))
-            .closest('form').submit();
-          Modal.currentModal.trigger('modal-dismiss');
-        })
-        .on('confirm.button.cancel', function() {
-          Modal.currentModal.trigger('modal-dismiss');
-        });
-    });
-
-    $('.t3js-impexp-toggledisabled').on('click', function() {
-      var $checkboxes = $('table.t3js-impexp-preview tr[data-active="hidden"] input.t3js-exclude-checkbox');
-      if ($checkboxes.length) {
-        $checkboxes.prop('checked', !$checkboxes.get(0).checked);
-      }
-    });
-  });
-});
+define(["require","exports","jquery","TYPO3/CMS/Backend/Modal"],function(t,e,n,i){"use strict";return new function(){n(function(){n(document).on("click",".t3js-confirm-trigger",function(t){var e=n(t.currentTarget);i.confirm(e.data("title"),e.data("message")).on("confirm.button.ok",function(){n("#t3js-submit-field").attr("name",e.attr("name")).closest("form").submit(),i.currentModal.trigger("modal-dismiss")}).on("confirm.button.cancel",function(){i.currentModal.trigger("modal-dismiss")})}),n(".t3js-impexp-toggledisabled").on("click",function(){var t=n('table.t3js-impexp-preview tr[data-active="hidden"] input.t3js-exclude-checkbox');if(t.length){var e=t.get(0);t.prop("checked",!e.checked)}})})}});
\ No newline at end of file