From 37dc844cc4eb0cf223478d66f0c73dcd4a29fb8f Mon Sep 17 00:00:00 2001 From: TopchetoEU Date: Wed, 1 Jan 2025 22:16:01 +0000 Subject: [PATCH] fix: use typescript instead --- src/lib/transpiler/_entry.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/lib/transpiler/_entry.ts b/src/lib/transpiler/_entry.ts index f5aac7e..1d82430 100644 --- a/src/lib/transpiler/_entry.ts +++ b/src/lib/transpiler/_entry.ts @@ -1,4 +1,7 @@ -import coffeescript from "./coffeescript.ts"; -import babel from "./babel.ts"; +// import coffeescript from "./coffeescript.ts"; +// import babel from "./babel.ts"; -register(v => coffeescript(babel(v))); +// register(v => coffeescript(babel(v))); +import typescript from "./typescript.ts"; + +register(typescript);