fix(compiler): fix options for compiler

This commit is contained in:
2018-07-25 23:38:30 +02:00
parent bc6039e5ed
commit eeb6d6b963
6 changed files with 38 additions and 23 deletions

View File

@ -1,8 +1,12 @@
console.log('test');
console.log('test2');
class test {
class test2 {
test: string[] = [];
constructor() {
console.log('hi');
}
}
const run = async (): Promise<string> => {
return 'hi';
};