I m actually studying TypeScript 1.5 and I was wondering can I import an external ES6 module ?
I need to use this one (which exposes an ES6 API) through my TS1.5 code (https://www.npmjs.com/package/rtts_assert).
Here's what I've tried :
import {rtts} from "../../node_modules/rtts_assert/es6/rtts_assert.es6";
import {rtts} from "../../node_modules/rtts_assert/es6/rtts_assert";
import * as rtts from "../../node_modules/rtts_assert/es6/rtts_assert.es6";
import * as rtts from "../../node_modules/rtts_assert/es6/rtts_assert";
But the transpiler (TypeScript > ES5, with CommonJS) doesn't find this module
Thanks for advance