Hey there! I'm looking to streamline error handling in my application by creating a centralized file for all error messages and then importing it wherever needed. One approach I've considered is to create a JavaScript file with all the error messages, export them using module.exports, and then import that file. However, I'm wondering if there's a more TypeScript-friendly way to accomplish this. I've searched on Google but haven't found any relevant information. Would it be better to create a TypeScript class with error messages as properties of that class and then import that class? Any suggestions would be greatly appreciated!