확장자 제거

This commit is contained in:
2024-03-08 11:35:19 +00:00
parent ca0bf296a6
commit 2e23be1585
+2 -2
View File
@@ -6,8 +6,8 @@ console.log("Hello from worker_test.ts!");
const __filename = fileURLToPath(new URL(import.meta.url));
const __dirname = nodePath.dirname(__filename);
const worker_b_ts = nodePath.join(__dirname, "worker_b.ts");
const worker_a_ts = nodePath.join(__dirname, "worker_a.ts");
const worker_b_ts = nodePath.join(__dirname, "worker_b");
const worker_a_ts = nodePath.join(__dirname, "worker_a");
const worker_b = new Worker(worker_b_ts);
const worker_a = new Worker(worker_a_ts);