Fix up a bunch of typescript issues

These came to light with the typescript compiler upgrade that is
coming up soon with the bazel upgrade.

A lot of the changes in this patch arose from the changes in the
imports. For some reason we can no longer import modules the way we
used to. I'm not really sure how it ever worked. The upstream
documentation agrees with the changes we had to make here. It's
possible that the old version of typescript simply did things
differently when it comes to importing modules.

Change-Id: I054b5269c90cc94276e9f856d8cd79c8de2946f2
diff --git a/y2020/www/camera_main.ts b/y2020/www/camera_main.ts
index e13452e..8667a8e 100644
--- a/y2020/www/camera_main.ts
+++ b/y2020/www/camera_main.ts
@@ -1,7 +1,7 @@
-import {Connection} from 'aos/network/www/proxy';
+import {Connection} from 'org_frc971/aos/network/www/proxy';
 
 import {ImageHandler} from './image_handler';
-import {ConfigHandler} from 'aos/network/www/config_handler';
+import {ConfigHandler} from 'org_frc971/aos/network/www/config_handler';
 
 const conn = new Connection();