tsrun/test/test.ts

10 lines
253 B
TypeScript
Raw Normal View History

2018-06-04 21:25:19 +00:00
const textToPost: string = 'Test runs!';
console.log(textToPost);
2021-10-06 11:06:24 +00:00
const run = async () => {
// lets test esm
console.warn('remember to enable esm checks once TypeScript 4.5 is released.')
// const nodeFetch = await import('node-fetch');
}
run();