I am new to TypeScript and I am currently learning about exports and imports in TypeScript
However, as I started working on it, I encountered an error with exports
Object.defineProperty(exports, "__esModule", { value: true });
The error message I received was:
Uncaught ReferenceError: exports is not defined
After doing some research online, I came across a solution
According to the solution, my project should include tsconfig.json
and common.js
However, I do not have these files in my project
Here is a screenshot of my project for reference
https://i.sstatic.net/M7ISV.png
What steps should I take next?