@@ -177,19 +177,19 @@ describe("unittests:: tsc-watch:: emit file --incremental", () => {
177
177
version : system . createHash ( libFile . content ) ,
178
178
signature : system . createHash ( libFile . content ) ,
179
179
affectsGlobalScope : true ,
180
- impliedFormat : ts . ModuleKind . CommonJS ,
180
+ impliedFormat : undefined ,
181
181
} ) ;
182
182
assert . deepEqual ( builderProgram . state . fileInfos . get ( file1 . path as ts . Path ) , {
183
183
version : system . createHash ( file1 . content ) ,
184
184
signature : system . createHash ( file1 . content ) ,
185
185
affectsGlobalScope : undefined ,
186
- impliedFormat : ts . ModuleKind . CommonJS ,
186
+ impliedFormat : undefined ,
187
187
} ) ;
188
188
assert . deepEqual ( builderProgram . state . fileInfos . get ( file2 . path as ts . Path ) , {
189
189
version : system . createHash ( fileModified . content ) ,
190
190
signature : system . createHash ( fileModified . content ) ,
191
191
affectsGlobalScope : undefined ,
192
- impliedFormat : ts . ModuleKind . CommonJS ,
192
+ impliedFormat : undefined ,
193
193
} ) ;
194
194
195
195
assert . deepEqual ( builderProgram . state . compilerOptions , {
0 commit comments