File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
packages/node-experimental/src Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 29
29
/* eslint-disable @typescript-eslint/explicit-member-accessibility */
30
30
/* eslint-disable @typescript-eslint/member-ordering */
31
31
/* eslint-disable jsdoc/require-jsdoc */
32
- import * as http from 'http' ;
33
32
import type * as net from 'net' ;
33
+ import * as http from 'node:http' ;
34
34
import type { Duplex } from 'stream' ;
35
35
import type * as tls from 'tls' ;
36
36
Original file line number Diff line number Diff line change 27
27
*/
28
28
29
29
/* eslint-disable jsdoc/require-jsdoc */
30
- import * as http from 'http' ;
31
- import * as https from 'https' ;
30
+ import * as http from 'node: http' ;
31
+ import * as https from 'node: https' ;
32
32
import type { Readable } from 'stream' ;
33
33
34
34
export type ThenableRequest = http . ClientRequest & {
Original file line number Diff line number Diff line change 1
- import * as http from 'http' ;
2
- import * as https from 'https' ;
1
+ import * as http from 'node: http' ;
2
+ import * as https from 'node: https' ;
3
3
import { Readable } from 'stream' ;
4
4
import { createGzip } from 'zlib' ;
5
5
import { createTransport } from '@sentry/core' ;
You can’t perform that action at this time.
0 commit comments