diff --git a/@sammo/server/package.json b/@sammo/server/package.json index ee47a80..da65512 100644 --- a/@sammo/server/package.json +++ b/@sammo/server/package.json @@ -5,7 +5,8 @@ "main": "dist/index.js", "scripts": { "build": "tsc --build", - "dev": "tsc --watch" + "dev": "tsc --watch", + "worker_test": "tsx src/worker_test.ts" }, "author": "Hide_D ", "type": "module", diff --git a/@sammo/server/src/worker_test.ts b/@sammo/server/src/worker_test.ts new file mode 100644 index 0000000..cff9a41 --- /dev/null +++ b/@sammo/server/src/worker_test.ts @@ -0,0 +1 @@ +console.log("Hello from worker_test.ts!"); \ No newline at end of file