Trent Larson
1 year ago
9 changed files with 383 additions and 475 deletions
File diff suppressed because it is too large
@ -1,121 +0,0 @@ |
|||||
|
|
||||
> kickstart-for-time-pwa@0.1.0 build |
|
||||
> vue-cli-service build |
|
||||
|
|
||||
All browser targets in the browserslist configuration have supported ES module. |
|
||||
Therefore we don't build two separate bundles for differential loading. |
|
||||
|
|
||||
|
|
||||
ERROR Failed to compile with 10 errors8:42:51 PM |
|
||||
|
|
||||
error in src/views/ContactGiftingView.vue:164:13 |
|
||||
|
|
||||
TS18046: 'err' is of type 'unknown'. |
|
||||
162 | title: "Error", |
|
||||
163 | text: |
|
||||
> 164 | err.message || |
|
||||
| ^^^ |
|
||||
165 | "There was an error retrieving the latest sweet, sweet action.", |
|
||||
166 | }, |
|
||||
167 | -1, |
|
||||
|
|
||||
error in src/views/ContactGiftingView.vue:173:5 |
|
||||
|
|
||||
TS2571: Object is of type 'unknown'. |
|
||||
171 | |
|
||||
172 | openDialog(giver: GiverInputInfo) { |
|
||||
> 173 | this.$refs.customDialog.open(giver); |
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^ |
|
||||
174 | } |
|
||||
175 | |
|
||||
176 | handleDialogResult(result: GiverOutputInfo) { |
|
||||
|
|
||||
error in src/views/ContactGiftingView.vue:287:19 |
|
||||
|
|
||||
TS2339: Property 'error' does not exist on type 'CreateAndSubmitGiveResult'. |
|
||||
Property 'error' does not exist on type 'SuccessResult'. |
|
||||
285 | |
|
||||
286 | getGiveCreationErrorMessage(result: CreateAndSubmitGiveResult) { |
|
||||
> 287 | return result.error?.userMessage; |
|
||||
| ^^^^^ |
|
||||
288 | } |
|
||||
289 | |
|
||||
290 | getGiveErrorMessage(error: any) { |
|
||||
|
|
||||
error in src/views/DiscoverView.vue:347:17 |
|
||||
|
|
||||
TS18046: 'e' is of type 'unknown'. |
|
||||
345 | type: "danger", |
|
||||
346 | title: "Error", |
|
||||
> 347 | text: e.userMessage || "There was a problem retrieving projects.", |
|
||||
| ^ |
|
||||
348 | }, |
|
||||
349 | -1, |
|
||||
350 | ); |
|
||||
|
|
||||
error in src/views/DiscoverView.vue:425:17 |
|
||||
|
|
||||
TS18046: 'e' is of type 'unknown'. |
|
||||
423 | type: "danger", |
|
||||
424 | title: "Error", |
|
||||
> 425 | text: e.userMessage || "There was a problem retrieving projects.", |
|
||||
| ^ |
|
||||
426 | }, |
|
||||
427 | -1, |
|
||||
428 | ); |
|
||||
|
|
||||
error in src/views/DiscoverView.vue:461:15 |
|
||||
|
|
||||
TS7006: Parameter 'event' implicitly has an 'any' type. |
|
||||
459 | } |
|
||||
460 | |
|
||||
> 461 | setMapPoint(event) { |
|
||||
| ^^^^^ |
|
||||
462 | if (this.isNewMarkerSet) { |
|
||||
463 | this.localLatDiff = Math.abs(event.latlng.lat - this.localCenterLat); |
|
||||
464 | this.localLongDiff = Math.abs(event.latlng.lng - this.localCenterLong); |
|
||||
|
|
||||
error in src/views/HelpView.vue:182:26 |
|
||||
|
|
||||
TS2732: Cannot find module '../../package.json'. Consider using '--resolveJsonModule' to import module with '.json' extension. |
|
||||
180 | |
|
||||
181 | <script lang="ts"> |
|
||||
> 182 | import * as Package from "../../package.json"; |
|
||||
| ^^^^^^^^^^^^^^^^^^^^ |
|
||||
183 | import { Component, Vue } from "vue-facing-decorator"; |
|
||||
184 | import QuickNav from "@/components/QuickNav.vue"; |
|
||||
185 | |
|
||||
|
|
||||
error in src/views/HomeView.vue:295:13 |
|
||||
|
|
||||
TS18046: 'err' is of type 'unknown'. |
|
||||
293 | title: "Error", |
|
||||
294 | text: |
|
||||
> 295 | err.userMessage || |
|
||||
| ^^^ |
|
||||
296 | "There was an error retrieving the latest sweet, sweet action.", |
|
||||
297 | }, |
|
||||
298 | -1, |
|
||||
|
|
||||
error in src/views/HomeView.vue:428:5 |
|
||||
|
|
||||
TS2571: Object is of type 'unknown'. |
|
||||
426 | |
|
||||
427 | openDialog(giver: GiverInputInfo) { |
|
||||
> 428 | this.$refs.customDialog.open(giver); |
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^ |
|
||||
429 | } |
|
||||
430 | |
|
||||
431 | handleDialogResult(result: GiverOutputInfo) { |
|
||||
|
|
||||
error in src/views/NewEditProjectView.vue:286:20 |
|
||||
|
|
||||
TS2339: Property '$router' does not exist on type 'Vue'. |
|
||||
284 | name: "project", |
|
||||
285 | }; |
|
||||
> 286 | that.$router.push(route); |
|
||||
| ^^^^^^^ |
|
||||
287 | }, |
|
||||
288 | 2000, |
|
||||
289 | this, |
|
||||
|
|
Loading…
Reference in new issue