work in progress

This commit is contained in:
Sam Hoffman
2026-01-09 13:05:21 -05:00
commit 238b9a31a1
27 changed files with 4883 additions and 0 deletions

20
irchad-web/jsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"allowJs": true,
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "bundler",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}