Skip to content

Commit

Permalink
Added support for sum types and other improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
kuchta committed Feb 15, 2024
1 parent 4d2adbb commit 6e052cc
Show file tree
Hide file tree
Showing 17 changed files with 1,728 additions and 1,389 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ plugins: [ "@typescript-eslint" ]
root: true
rules:
no-mixed-spaces-and-tabs: [ error, smart-tabs ]
no-cond-assign: off
import/no-anonymous-default-export: off
"@typescript-eslint/no-non-null-assertion": off
"@typescript-eslint/no-unused-vars": warn
Expand Down
20 changes: 16 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,22 @@
"name": "Debug TS File",
"type": "node",
"request": "launch",
"args": [ "${relativeFile}" ],
"runtimeArgs": [ "--loader", "tsx" ],
"cwd": "${workspaceRoot}",
"internalConsoleOptions": "openOnSessionStart"
"program": "${file}",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
"skipFiles": [
"<node_internals>/**",
"${workspaceFolder}/node_modules/**",
]
}, {
"name": "Debug Test",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/test.ts",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
"skipFiles": [
"<node_internals>/**",
"${workspaceFolder}/node_modules/**",
]
},
]
}
Binary file added favicon.webp
Binary file not shown.
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

<html lang="en" data-theme="autumn">
<head>
<title>Radixverse</title>
<title>RadixVerse</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="icon" href="/favicon.webp">
<link rel="manifest" href="/manifest.json">
<script type="module" src="/src/app.tsx"></script>
</head>
<body>
Expand Down
9 changes: 9 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "RadixVerse",
"start_url": "/radixverse",
"display": "standalone",
"icons": [{
"src": "favicon.svg",
"sizes": "400x400 any"
}]
}
31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,25 @@
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.10.2",
"@types/react": "^18.2.40",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"daisyui": "^4.4.17",
"eslint": "^8.55.0",
"@types/node": "^20.11.17",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"daisyui": "^4.6.2",
"eslint": "^8.56.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "4.6.0",
"postcss": "^8.4.31",
"postcss": "^8.4.35",
"react": "0.0.0-experimental-c17a27ef4-20231127",
"react-dom": "0.0.0-experimental-c17a27ef4-20231127",
"react-router-dom": "^6.20.1",
"tailwindcss": "^3.3.5",
"tsx": "^4.6.1",
"typescript": "^5.3.2",
"vite": "^5.0.4"
"react-icons": "^4.12.0",
"react-router-dom": "^6.21.3",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.12"
}
}
Loading

0 comments on commit 6e052cc

Please sign in to comment.