tsbuild/test/assets/tocompile.ts

22 lines
349 B
TypeScript
Raw Permalink Normal View History

2018-07-25 18:56:42 +00:00
console.log('test');
console.log('test2');
2020-08-10 22:10:20 +00:00
2023-08-26 11:27:51 +00:00
import * as early from '@push.rocks/early';
2020-08-10 22:10:20 +00:00
early.start();
early.stop();
2022-03-18 13:32:35 +00:00
import { anExportedString } from './tocompile2.js';
2020-08-10 22:10:20 +00:00
console.log(anExportedString);
class test2 {
2018-07-25 18:56:42 +00:00
test: string[] = [];
constructor() {
console.log('hi');
}
}
const run = async (): Promise<string> => {
return 'hi';
};