Skip to content

Commit 765acc1

Browse files
committed
fix imports
1 parent 108286e commit 765acc1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

packages/hub/.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ module.exports = {
1414
parserOptions: {
1515
project: './tsconfig.json',
1616
},
17+
rules: {
18+
'@typescript-eslint/no-floating-promises': 'off',
19+
},
1720
},
1821
{
1922
files: ['test/**'],

packages/node/src/sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { SessionStatus } from '@sentry/types';
44
import { getGlobalObject } from '@sentry/utils';
55
import * as domain from 'domain';
66

7-
import { NodeOptions } from './backend';
87
import { NodeClient } from './client';
98
import { Console, Http, LinkedErrors, OnUncaughtException, OnUnhandledRejection } from './integrations';
9+
import { NodeOptions } from './types';
1010

1111
export const defaultIntegrations = [
1212
// Common

0 commit comments

Comments
 (0)