Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: replace JSX with TSX for type safety #35

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"name": "Mario Kart Dev Container",
"image": "mcr.microsoft.com/devcontainers/javascript-node",
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens",
"esbenp.prettier-vscode",
"VisualStudioExptTeam.vscodeintellicode",
"dbaeumer.vscode-eslint",
"dsznajder.es7-react-js-snippets",
"antfu.vite",
"meganrogge.template-string-converter",
"ambar.bundle-size",
"aaron-bond.better-comments"
]
}
},
"forwardPorts": [4000],
"portsAttributes": {
"4000": {
"label": "Application",
"onAutoForward": "notify"
}
},
"postCreateCommand": "npm install"
"name": "Mario Kart Dev Container",
"image": "mcr.microsoft.com/devcontainers/javascript-node",
"customizations": {
"vscode": {
"extensions": [
"eamodio.gitlens",
"esbenp.prettier-vscode",
"VisualStudioExptTeam.vscodeintellicode",
"dbaeumer.vscode-eslint",
"dsznajder.es7-react-js-snippets",
"antfu.vite",
"meganrogge.template-string-converter",
"ambar.bundle-size",
"aaron-bond.better-comments"
]
}
},
"forwardPorts": [4000],
"portsAttributes": {
"4000": {
"label": "Application",
"onAutoForward": "notify"
}
},
"postCreateCommand": "npm install"
}
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Mario Kart 3.js - JavaScript/WebGL Mario Kart

[Link](https://mario-kart-3-js.vercel.app/)

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/Lunakepio/Mario-Kart-3.js)
Expand Down Expand Up @@ -53,7 +54,7 @@ Start the dev server

- [ ] Add curve/length modifiers to drift particles 3/4

- [ ] Add Skid marks
- [ ] Add Skid marks

- [x] Add smokes

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<title>Mario Kart 3.js</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading