developerasun / myCodeBox-web

Open source code box for web developers.
Apache License 2.0
5 stars 0 forks source link

Express/Typescript : SyntaxError: Cannot use import statement outside a module #208

Closed developerasun closed 2 years ago

developerasun commented 2 years ago

issue : Express app throwing import error

tsconfig compiler option

before

"target" : "ES2020"
"module" : "ES6" 
developerasun commented 2 years ago

solution : fixed the compiler option like below

"target" : "ES2020", 
"module" : "CommonJS"