a scrappy gimbal that insults you in shakespearean english

chore: move web to src

+2 -2
+1 -1
index.html
··· 70 70 </head> 71 71 <body> 72 72 <div id="app"></div> 73 - <script type="module" src="/server/main.ts"></script> 73 + <script type="module" src="/src/index.ts"></script> 74 74 </body> 75 75 </html>
server/global.css src/global.css
server/main.ts src/index.ts
+1 -1
tsconfig.json
··· 20 20 "noFallthroughCasesInSwitch": true, 21 21 "noUncheckedSideEffectImports": true 22 22 }, 23 - "include": ["server"] 23 + "include": ["src"] 24 24 }