Implement standalone control server

This commit is contained in:
Max Goodhart
2025-06-14 06:46:27 +00:00
parent ec6b7bd360
commit 9ded048667
29 changed files with 3414 additions and 415 deletions

View File

@@ -0,0 +1,13 @@
{
"extends": ["@tsconfig/recommended/tsconfig", "@tsconfig/vite-react"],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"types": ["vite/client"],
"paths": {
"react": ["./node_modules/preact/compat/"],
"react-dom": ["./node_modules/preact/compat/"]
}
},
"include": ["src"]
}