here is how In am exporting a class in my server.ts file and here is how I am importing it in another js file, I have compiled ts to js using "tsc -t es5 server.ts" command. but whenever I try to run node testserver.js which imports the exported class it gives me this error ?
import { Wsmt } from './server.js'
^^^^
SyntaxError: The requested module './server.js' does not provide an export named 'Wsmt'