Skip to content

Commit

Permalink
Added required newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjvs committed Aug 18, 2024
1 parent 38ea7fb commit 78308ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ interface Config {
}
}

const rawConfigData = readFileSync(path.join(process.cwd(), './config.json'), { encoding: 'utf-8' });
const rawConfigData = readFileSync(path.join(process.cwd(), './config.json'), {
encoding: 'utf-8'
});
const configData: Config = JSON.parse(rawConfigData);

export default configData;

0 comments on commit 78308ca

Please sign in to comment.