Files
leporello-js/index.html
2025-05-30 19:59:02 +00:00

35 lines
743 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Leporello.js</title>
<script type='module' src='./src/ts_libs.js' async></script>
<script src='ace/ace.js'></script>
<script src='ace/keybinding-vim.js'></script>
<script src='ace/ext-language_tools.js'></script>
<script src="./typescript/typescript.js"></script>
<script type="importmap">
{
"imports": {
"typescript": "./src/typescript-module.js"
}
}
</script>
<script type='module' src="./src/launch.js"></script>
<link rel=stylesheet href='./styles.css'></link>
</head>
<body>
<div id='app' class='app'>
</div>
</body>
</html>