mirror of
https://github.com/tomasvarg/systemjs-typescript-minimal.git
synced 2026-03-01 08:18:52 +00:00
16 lines
365 B
HTML
16 lines
365 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>SystemJS Typescript Sample</title>
|
|
</head>
|
|
<body>
|
|
<div id="whatever-app"></div>
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
|
<script src="system.config.js"></script>
|
|
<script>
|
|
System.import('src/main.ts');
|
|
</script>
|
|
</body>
|
|
</html>
|