console.log('test');
console.log('test2');

import * as early from '@push.rocks/early';

early.start();
early.stop();

import { anExportedString } from './tocompile2.js';
console.log(anExportedString);

class test2 {
  test: string[] = [];
  constructor() {
    console.log('hi');
  }
}

const run = async (): Promise<string> => {
  return 'hi';
};