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