Dynamic import expressions are a new feature in ECMAScript that allows you to asynchronously request a module at any arbitrary point in your program. These modules come back as Promises of the module itself, and can be await-ed in an async function, or can be given a callback with .then.A great new feature for ECMAscript now available in TypeScript.What this means in short that you can conditionally and lazily import other modules and libraries to make your application more efficient and resource-conscious.