Нашла в интернете несколько простых примеров работы с модулем, но при загрузке страницы ничего не происходит, даже ошибок не выводит, в чём может быть проблема?
<!doctype html>
<meta charset="utf-8">
<title>Loading images</title>
<script type="module">
module Shapes {
export class Rectangle {
constructor (
public height: number,
public width: number) {
console.log("test");
}
}
}
// This not works!
var rect = Shapes.Rectangle(10, 4);
</script>