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);
|
|
|
|
|
2018-07-25 21:38:30 +00:00
|
|
|
class test2 {
|
2018-07-25 18:56:42 +00:00
|
|
|
test: string[] = [];
|
|
|
|
constructor() {
|
|
|
|
console.log('hi');
|
|
|
|
}
|
|
|
|
}
|
2018-07-25 21:38:30 +00:00
|
|
|
|
|
|
|
const run = async (): Promise<string> => {
|
|
|
|
return 'hi';
|
|
|
|
};
|