How to fix Angular 18 error: A namespace-style import cannot be called or constructed ...
Problem
After upgrading your Angular application to Angular 18, you see build error such as:
ts_error.txt
✘ [ERROR] TS2349: This expression is not callable.
  Type 'typeof import("/home/uli/myproject/node_modules/dayjs/index.d.ts")' has no call signatures. [plugin angular-compiler]
    src/app/day-js.service.ts:37:15:
      37 │     const d2 = dayjs(d);
         ╵                ~~~~~
  Type originates at this import. A namespace-style import cannot be called or constructed, and will cause a failure at runtime. Consider using a default import or import require here instead.
    src/app/day-js.service.ts:3:0:
      3 │ import * as dayjs from 'dayjs'Solution
Typescript 5.4 does not support the import * as X from 'X any more.
Therefore, you need to change
example.ts
import * as dayjs from 'dayjs'to
example.ts
import dayjs from 'dayjs'Check out similar posts by category:
Angular, Typescript
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow