mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 13:04:30 -08:00
35 lines
743 B
HTML
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>
|