mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-28 12:23:31 +01:00
Enforce node: schema for builtins, import extensions
This commit is contained in:
@@ -2,15 +2,15 @@
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
// Note: this is a dangerous import; it will break storybook
|
||||
import { getRandomBytes } from '../Crypto';
|
||||
import { getRandomBytes } from '../Crypto.js';
|
||||
|
||||
import * as Bytes from '../Bytes';
|
||||
import { createLogger } from '../logging/log';
|
||||
import * as Bytes from '../Bytes.js';
|
||||
import { createLogger } from '../logging/log.js';
|
||||
|
||||
import { NOTIFICATION_PROFILE_ID_LENGTH } from './NotificationProfile';
|
||||
import { NOTIFICATION_PROFILE_ID_LENGTH } from './NotificationProfile.js';
|
||||
|
||||
import type { NotificationProfileIdString } from './NotificationProfile';
|
||||
import type { LoggerType } from './Logging';
|
||||
import type { NotificationProfileIdString } from './NotificationProfile.js';
|
||||
import type { LoggerType } from './Logging.js';
|
||||
|
||||
const log = createLogger('NotificationProfile-node');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user