-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 863 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fundamentos TypeScript</title>
</head>
<body>
<h2>Fundamentos de TypeScript</h2>
<form action="" id="my-form"></form>
<a href="#" id="my-link">link</a>
<!-- carrego o arquivo compilado em JS -->
<!-- tem que descrever o type para funcionar os modulos -->
<!-- <script type="module" src="./dist/index.js"></script> -->
<!-- como instalamos o package nao precisa mais colocar o module -->
<!-- para que os modulos sejam vistos entre arquivos -->
<!-- resolve o problema do edge MS -->
<script src="./dist/index.js"></script>
<!-- <script type="module" src="./dist/mapkey.js"></script> -->
</body>
</html>