Skip to content

Commit

Permalink
Use vite
Browse files Browse the repository at this point in the history
Upgrade three
  • Loading branch information
BryceMehring committed Dec 29, 2022
1 parent ed3b47c commit 8a7e353
Show file tree
Hide file tree
Showing 12 changed files with 1,998 additions and 6,287 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"no-shadow": "error",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off"
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-argument": "off"
},
"ignorePatterns": [
"rollup.config.mjs",
Expand Down
7 changes: 3 additions & 4 deletions assets/index.html → index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<!DOCTYPE html>
<html ${htmlAttributes}>
<html>
<head>
<meta charset="utf-8" />
<title>${title}</title>
<title>Space</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
${links}
</head>
<body>
<noscript>
Expand All @@ -22,6 +21,6 @@
document.querySelector('#error').classList.remove('hide');
</script>
<canvas id="game"></canvas>
${scripts}
<script type="module" src="/source/app.ts"></script>
</body>
</html>
Loading

0 comments on commit 8a7e353

Please sign in to comment.