Enforce node: schema for builtins, import extensions

This commit is contained in:
Fedor Indutny
2025-09-16 17:39:03 -07:00
committed by GitHub
parent cc6b8795b8
commit c02565eaa8
2096 changed files with 14955 additions and 14023 deletions

View File

@@ -1,16 +1,16 @@
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import * as path from 'path';
import { tmpdir } from 'os';
import { chmodSync, rmSync, writeFileSync, mkdtempSync } from 'fs';
import * as path from 'node:path';
import { tmpdir } from 'node:os';
import { chmodSync, rmSync, writeFileSync, mkdtempSync } from 'node:fs';
import { pathExists, readJsonSync } from 'fs-extra';
import { v4 as generateGuid } from 'uuid';
import { assert } from 'chai';
import type { ConfigType } from '../../../app/base_config';
import { start } from '../../../app/base_config';
import type { ConfigType } from '../../../app/base_config.js';
import { start } from '../../../app/base_config.js';
describe('base_config', () => {
let targetDir: string;