aboutsummaryrefslogtreecommitdiffstats
path: root/config.ts
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-01-22 10:39:31 +0100
committerMatěj Cepl <mcepl@cepl.eu>2023-01-22 10:39:31 +0100
commit9e8931a65545595fea87132e77e70005556997d1 (patch)
treea619a1bdb3acf65a0e898a6e398ac7d9b6553e56 /config.ts
parent10516625853177b2b1ed01d054aca63ced9042d0 (diff)
downloadhesla-9e8931a65545595fea87132e77e70005556997d1.tar.gz
Basics of rewrite to TypeScript
Diffstat (limited to 'config.ts')
-rw-r--r--config.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.ts b/config.ts
new file mode 100644
index 0000000..c316066
--- /dev/null
+++ b/config.ts
@@ -0,0 +1,6 @@
+/// <reference path="require.d.ts" />
+import * as hes from "hesla";
+
+require([], () => {
+ var thisHesla = new hes.Hesla();
+});