What does “… resolves to a non-module entity and cannot be imported using this construct” mean?

Why it doesn’t work

import * as MC from './MyClass';

This is ES6/ES2015-style import syntax. The exact meaning of this is “Take the module namespace object loaded from ./MyClass and use it locally as MC“. Notably, the “module namespace object” consists only of a plain object with properties. An ES6 module object cannot be invoked as a function or with new.

To say it again: An ES6 module namespace object cannot be invoked as a function or with new.

The thing you import using * as X from a module is defined to only have properties. In downleveled CommonJS this might not be fully respected, but TypeScript is telling you what the behavior defined by the standard is.

What does work?

You’ll need to use the CommonJS-style import syntax to use this module:

import MC = require('./MyClass');

If you control both modules, you can use export default instead:

MyClass.ts

export default class MyClass {
  constructor() {
  }
}

MyConsumer.ts

import MC from './MyClass';

I’m Sad About This; Rules are Dumb.

It would have been nice to use ES6 import syntax, but now I have to do this import MC = require('./MyClass'); thing? It’s so 2013! Lame! But grief is a normal part of programming. Please jump to stage five in the Kübler-Ross model: Acceptance.

TypeScript here is telling you this doesn’t work, because it doesn’t work. There are hacks (adding a namespace declaration to MyClass is a popular way to pretend this works), and they might work today in your particular downleveling module bundler (e.g. rollup), but this is illusory. There aren’t any ES6 module implementations in the wild yet, but that won’t be true forever.

Picture your future self, trying to run on a neato native ES6 module implementation and finding that you’ve set yourself up for major failure by trying to use ES6 syntax to do something that ES6 explicitly doesn’t do.

I want to take advantage of my non-standard module loader

Maybe you have a module loader that “helpfully” creates default exports when none exist. I mean, people make standards for a reason, but ignoring standards is fun sometimes and we can think that’s a cool thing to do.

Change MyConsumer.ts to:

import A from './a';

And specify the allowSyntheticDefaultImports command-line or tsconfig.json option.

Note that allowSyntheticDefaultImports doesn’t change the runtime behavior of your code at all. It’s just a flag that tells TypeScript that your module loader creates default exports when none exist. It won’t magically make your code work in nodejs when it didn’t before.

Leave a Comment