Build
This commit is contained in:
18
dist/index.mjs
vendored
Normal file
18
dist/index.mjs
vendored
Normal 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
|
||||
Reference in New Issue
Block a user