require the use of node prefix on native imports

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2026-01-25 13:47:32 +01:00
parent 4ad63b8d9f
commit 7455dae884
444 changed files with 749 additions and 634 deletions
@@ -15,7 +15,7 @@
*/
import { Response } from 'express';
import crypto from 'crypto';
import crypto from 'node:crypto';
import { ClientAuthResponse } from '../types';
import { serializeError } from '@backstage/errors';
@@ -15,8 +15,8 @@
*/
import express from 'express';
import crypto from 'crypto';
import { URL } from 'url';
import crypto from 'node:crypto';
import { URL } from 'node:url';
import {
AuthenticationError,
InputError,