2018-07-25 18:56:42 +00:00
|
|
|
console.log('test');
|
|
|
|
console.log('test2');
|
2020-08-10 22:10:20 +00:00
|
|
|
|
|
|
|
import * as early from '@pushrocks/early';
|
|
|
|
|
|
|
|
early.start();
|
|
|
|
early.stop();
|
|
|
|
|
2022-03-12 18:05:46 +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';
|
|
|
|
};
|