From d4e4aef4181a36127f71a1636b840264c60b07de Mon Sep 17 00:00:00 2001 From: 4o1x5 <4o1x5@4o1x5.dev> Date: Fri, 21 Feb 2025 11:06:03 +0100 Subject: [PATCH] init: add main and ts start to package json --- main.ts | 1 + package.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 main.ts diff --git a/main.ts b/main.ts new file mode 100644 index 0000000..ba88852 --- /dev/null +++ b/main.ts @@ -0,0 +1 @@ +console.debug("Hello world") diff --git a/package.json b/package.json index b84bb3d..1987cde 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "version": "1.0.0", "main": "index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "dev": "ts-node main.ts" }, "author": "", "license": "ISC",