diff options
Diffstat (limited to 'cli/js/compiler.ts')
-rw-r--r-- | cli/js/compiler.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/compiler.ts b/cli/js/compiler.ts index 905f5efb2..33fef4002 100644 --- a/cli/js/compiler.ts +++ b/cli/js/compiler.ts @@ -245,6 +245,7 @@ class SourceFile { processed = false; sourceCode?: string; tsSourceFile?: ts.SourceFile; + versionHash!: string; url!: string; constructor(json: SourceFileJson) { @@ -445,7 +446,6 @@ class Host implements ts.CompilerHost { sourceFile.sourceCode, languageVersion ); - //@ts-ignore sourceFile.tsSourceFile.version = sourceFile.versionHash; delete sourceFile.sourceCode; } |