Skip to content
Advertisement

Typescript SyntaxError: Cannot use import statement outside a module (side file containing functions)

I am creating a minecraft bot using mineflayer library. After a bit of work I decided to make code readable and reusable (image of file organisation) and also start using typescript. I have read a lot of stack threads and other articles as this problem is quite popular. However, after trying all of it the problem still persists.

Edit, important change:

I have tried compiling it with tsc bot.ts --resolveJsonModule and then node bot.js. It turns out it works just fine, so now the problem narrows down to configuring WebStorm running options.

Here is what I have already done

  • package.json "type": "module -> TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".ts" for path
  • tsconfig.json has "esModuleInterop": true
  • use const util = require('./utils/util') and use util.function() -> same error as in 1st step

Running whole code

As I am using WebStorm, this is what I have in running options: image (just to clarify that I don’t run code from terminal)

Recreating problem in simplified environment

bot.ts

JavaScript

util.ts

JavaScript

config_main.json

JavaScript

tsconfig.json

JavaScript

package.json

JavaScript

Related threads

JavaScript

but the IDE gives me TS2632: Cannot assign to 'util' because it is an import. error.

Advertisement

Answer

Fixed by changing:

JavaScript

To:

JavaScript

Afterall I don’t know why compiling with tsc had been working well while webstorm was throwing out error. I just changed the import ES6 syntax to require() CommonJS.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement