Skip to content

v3.0.0

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 08 Sep 00:00
· 716 commits to main since this release

3.0.0 (2020-09-08)

Bug Fixes

  • moduleresolution: explicitly specify node-style module resolution (7ba7647)

Features

  • module: compile to ES6 modules instead of CommonJS (4162349)

BREAKING CHANGES

  • node.js < 12 is no longer supported.
  • module: TypeScript files are now built as ES Modules. This should help to improve
    tree-shaking performance. Consumers should set "type": "module" in their package.json.
    CommonJS-style imports such as import foo = require("foo") should be replaced by ES-style
    default imports such as import foo from "foo".