Instantiate threejs objects with typescript?

There is a temporary solution:

copying three.module.js from node_modules/three/build into the source directory, and import Vector3 from there:

import {Vector3} from "../modules/three.module"

then after building with babel, the error has gone. If anyone could provide a nicer solution, do not hesitate please!