Skip to content

v2.0.0

Choose a tag to compare

@djcsdy djcsdy released this 28 Mar 18:36

2.0.0 (2019-03-28)

Features

  • esModuleInterop: disable esModuleInterop (845513d)

BREAKING CHANGES

  • esModuleInterop: Projects that use ES6-style imports to import CommonJS modules will no longer
    compile. These projects will need to switch from using ES6-style imports (import foo from "foo";)
    to CommonJS-style imports (import foo = require("foo");) when importing CommonJS modules.