Skip to content

Commit

Permalink
add debugging outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan-Thurner committed May 13, 2024
1 parent 6b95041 commit 22dfd09
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ const fileNames = process.argv.slice(2);
const testFileNames = ["src/main/webapp/app/course/tutorial-groups/services/tutorial-group-free-period.service.ts"];

fileNames.forEach(fileName => {
console.log('-----------------------------------');
console.log(`Analyzing file: ${fileName}`);
console.log('-----------------------------------');
// Load the TypeScript file
const sourceFile = ts.createSourceFile(fileName, require('fs').readFileSync(fileName).toString(), ts.ScriptTarget.ES2015, true);

Expand Down

0 comments on commit 22dfd09

Please sign in to comment.