Skip to content

Typescript

Choose a tag to compare

@isidore isidore released this 29 Apr 19:15
· 911 commits to master since this release

There should be no visible changes from this release ¯_(ツ)_/¯
But all of the source files have been upgraded to typescript.

Normally I would set this as a patch release, but I making it a major version as I am concerned about changes to have javascript and typescript handle exports.

I have had to use the following a bit

Imports

var a = require("a")

import {a} from "a"
or 
import * as a from "a"