studye / typescript

타입스크립트는 자바스크립트랑 다른 언어인가요?
7 stars 0 forks source link

[typescript - 2.4] Dynamic import() expressions #46

Open sculove opened 7 years ago

sculove commented 7 years ago

https://github.com/tc39/proposal-dynamic-import Stage3 단계.

Dynamic-import 스펙 추가

import("module").then(module => {
// todo
}).catch(err => {
// err
});
sculove commented 7 years ago

Webpack2에서는 이미 지원하고 있음... https://webpack.js.org/guides/code-splitting/#dynamic-imports

참고로, 기존 webpack1에서는 require.ensure를 지원했음 https://webpack.js.org/api/module-methods/#require-ensure