ngx-mathquill
Version:
A thin typescript wrapper around mathquill
28 lines (24 loc) • 545 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>Typescript Modules</title>
<!-- get systemJS from somewhere -->
<script src="http://code.angularjs.org/tools/system.js"></script>
</head>
<body>
<script>
// set our baseURL reference path
System.config({
baseURL: './',
defaultJSExtensions: true,
map: {
jquery: 'node_modules/jquery/dist/jquery'
}
});
// loads /js/main.js
System.import('./dist/test');
</script>
Open your js console.
</body>
</html>