File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,7 @@ function getDefaultProject(srcFile) {
154
154
projectFileDirectory : dir ,
155
155
projectFilePath : dir + '/' + projectFileName ,
156
156
project : project ,
157
+ inMemory : true
157
158
} ;
158
159
}
159
160
exports . getDefaultProject = getDefaultProject ;
@@ -240,7 +241,8 @@ function getProjectSync(pathOrSrcFile) {
240
241
return {
241
242
projectFileDirectory : projectFileDirectory ,
242
243
projectFilePath : projectFileDirectory + '/' + projectFileName ,
243
- project : project
244
+ project : project ,
245
+ inMemory : false
244
246
} ;
245
247
}
246
248
exports . getProjectSync = getProjectSync ;
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ export interface TypeScriptProjectFileDetails {
107
107
/** The actual path of the project file (including tsconfig.json) */
108
108
projectFilePath : string ;
109
109
project : TypeScriptProjectSpecification ;
110
+ inMemory : boolean ;
110
111
}
111
112
112
113
@@ -272,6 +273,7 @@ export function getDefaultProject(srcFile: string): TypeScriptProjectFileDetails
272
273
projectFileDirectory : dir ,
273
274
projectFilePath : dir + '/' + projectFileName ,
274
275
project : project ,
276
+ inMemory : true
275
277
} ;
276
278
}
277
279
@@ -397,7 +399,8 @@ export function getProjectSync(pathOrSrcFile: string): TypeScriptProjectFileDeta
397
399
return {
398
400
projectFileDirectory : projectFileDirectory ,
399
401
projectFilePath : projectFileDirectory + '/' + projectFileName ,
400
- project : project
402
+ project : project ,
403
+ inMemory : false
401
404
} ;
402
405
403
406
}
You can’t perform that action at this time.
0 commit comments