Skip to content

Commit 868e924

Browse files
committed
Refactor to go full js with vanjs instead of alpine
1 parent abdf7a5 commit 868e924

19 files changed

+2295
-1079
lines changed

TODO.md

-9
This file was deleted.

eslint.config.mjs

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
4+
export default [
5+
{ languageOptions: { globals: globals.browser } },
6+
pluginJs.configs.recommended,
7+
{
8+
ignores: ["node_modules/", "dist/"],
9+
},
10+
];

jsconfig.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": "./src",
4+
"paths": {
5+
"@/*": [
6+
"./*"
7+
]
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)