Switch to relative imports in scouting/**/*.ts files

This is a followup to I6df3e2d8b539e52bb8d1ee83f18284b6c00b6e46.

We're going to use relative imports with the switch to rules_js. This
patch aims to keep the final switchover patch as small as possible.

There are no functional changes.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I12f8bc8b31f0b261558119129e83bb01f62935b5
diff --git a/scouting/www/entry/entry.module.ts b/scouting/www/entry/entry.module.ts
index 38e272e..3322c01 100644
--- a/scouting/www/entry/entry.module.ts
+++ b/scouting/www/entry/entry.module.ts
@@ -5,7 +5,7 @@
 import {CounterButtonModule} from '../counter_button/counter_button.module';
 import {EntryComponent} from './entry.component';
 
-import {ClimbLevel} from 'org_frc971/scouting/webserver/requests/messages/submit_data_scouting_generated';
+import {ClimbLevel} from '../../webserver/requests/messages/submit_data_scouting_generated';
 
 @Pipe({name: 'levelToString'})
 export class LevelToStringPipe implements PipeTransform {