Imports
Turbopack supports CJS and ESM imports out of the box, and offers partial support for AMD.
Turbopack bundles your application, so imports won't be resolved to native browser ESM. You can learn why in our bundling vs Native ESM section.
CommonJS
Turbopack supports the require
syntax out-of-the-box:
ESM
Importing via the import
syntax is also supported out-of-the-box. This includes static assets, and import type
:
Dynamic Imports
Turbopack supports dynamic imports via import()
: