diff options
Diffstat (limited to 'lib/compilers/typescript-native.ts')
-rw-r--r-- | lib/compilers/typescript-native.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compilers/typescript-native.ts b/lib/compilers/typescript-native.ts index ba6b9c98d..d450bcb94 100644 --- a/lib/compilers/typescript-native.ts +++ b/lib/compilers/typescript-native.ts @@ -108,8 +108,7 @@ export class TypeScriptNativeCompiler extends BaseCompiler { override async generateIR(inputFilename: string, options: string[], filters: ParseFiltersAndOutputOptions) { // These options make Clang produce an IR let newOptions = ['--emit=llvm', inputFilename]; - if (this.tscNewOutput) - { + if (this.tscNewOutput) { newOptions = ['--emit=llvm', '-o=-', inputFilename]; } |