Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Matsuuu committed Nov 8, 2023
1 parent 70856e9 commit 3e5c34d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export async function analyzeLocalProject(project: tss.server.Project): Promise<

const modifiedSourceFiles: ts.SourceFile[] = filesWithAbsolutePaths.map(sf => ts.createSourceFile(
sf,
readFileSync(sf, "utf8"),
readFileSync(sf, "utf8"), // TODO: Is there a need to make this not sync? For speed?
ts.ScriptTarget.ES2015,
true
));
Expand Down

0 comments on commit 3e5c34d

Please sign in to comment.