This commit is contained in:
Git Workflow Bot
2024-09-15 15:39:49 +00:00
parent 89ce218b1c
commit 52e1465a83
6 changed files with 71 additions and 0 deletions

18
dist/index.mjs vendored Normal file
View File

@ -0,0 +1,18 @@
// src/test.ts
function test(i) {
console.log(`Hello, World! (#${i})`);
}
// src/index.ts
function startTest() {
console.log("Hello, World!");
let i = 0;
setInterval(() => {
i++;
test(i);
}, 1e3);
}
export {
startTest
};
//# sourceMappingURL=index.mjs.map