From 135c123adcb207f9c544bcc6c6853c3f8488fb31 Mon Sep 17 00:00:00 2001 From: Unitech Date: Fri, 6 Oct 2023 07:40:38 +0200 Subject: [PATCH] #5682 #5675 - when starting a ts or tsx app automatically use bun instead of ts-node --- lib/API/interpreter.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/API/interpreter.json b/lib/API/interpreter.json index a36738895..df1fed82a 100644 --- a/lib/API/interpreter.json +++ b/lib/API/interpreter.json @@ -7,6 +7,6 @@ ".js" : "node", ".coffee" : "coffee", ".ls" : "lsc", - ".ts" : "ts-node", - ".tsx" : "ts-node" + ".ts" : "bun", + ".tsx" : "bun" }