File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/integrations/src Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,9 @@ export class Vue implements Integration {
151
151
/**
152
152
* @inheritDoc
153
153
*/
154
- public constructor ( options : Partial < IntegrationOptions > ) {
154
+ public constructor (
155
+ options : Partial < Omit < IntegrationOptions , 'tracingOptions' > & { tracingOptions : Partial < TracingOptions > } > ,
156
+ ) {
155
157
this . _options = {
156
158
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
157
159
Vue : getGlobalObject < any > ( ) . Vue ,
@@ -313,7 +315,7 @@ export class Vue implements Integration {
313
315
}
314
316
} ;
315
317
316
- // Each compomnent has it's own scope, so all activities are only related to one of them
318
+ // Each component has it's own scope, so all activities are only related to one of them
317
319
this . _options . tracingOptions . hooks . forEach ( operation => {
318
320
// Retrieve corresponding hooks from Vue lifecycle.
319
321
// eg. mount => ['beforeMount', 'mounted']
You can’t perform that action at this time.
0 commit comments