Searched refs:getOptionValue (Results 1 – 25 of 63) sorted by relevance
123
17 const { getOptionValue } = require('internal/options');23 const source = getOptionValue('--eval');24 const print = getOptionValue('--print');25 const loadESM = getOptionValue('--import').length > 0 || getOptionValue('--experimental-loader').le…26 if (getOptionValue('--input-type') === 'module' ||27 …(getOptionValue('--experimental-default-type') === 'module' && getOptionValue('--input-type') !== …32 getOptionValue('--inspect-brk'),
10 const { getOptionValue } = require('internal/options');26 const print = getOptionValue('--print');27 const loadESM = getOptionValue('--import').length > 0;28 if (getOptionValue('--input-type') === 'module' ||29 …(getOptionValue('--experimental-default-type') === 'module' && getOptionValue('--input-type') !== …34 getOptionValue('--inspect-brk'),
17 const { getOptionValue } = require('internal/options');29 if (getOptionValue('--input-type')) {59 if (getOptionValue('[has_eval_string]')) {61 getOptionValue('--eval'),62 getOptionValue('--inspect-brk'),63 getOptionValue('--print'));
7 const { getOptionValue } = require('internal/options');52 const { getOptionValue } = require('internal/options');53 const hasModulePreImport = getOptionValue('--import').length > 0;66 isModule = getOptionValue('--input-type') === 'module' ||67 …(getOptionValue('--experimental-default-type') === 'module' && getOptionValue('--input-type') !== …
6 const { getOptionValue } = require('internal/options');27 let concurrency = getOptionValue('--test-concurrency') || true;38 const shardOption = getOptionValue('--test-shard');65 watch: getOptionValue('--watch'),
17 const { getOptionValue } = require('internal/options');34 const kShouldFilterModules = getOptionValue('--watch-path').length === 0;35 const kWatchedPaths = ArrayPrototypeMap(getOptionValue('--watch-path'), (path) => resolve(path));36 const kPreserveOutput = getOptionValue('--watch-preserve-output');
9 const { getOptionValue } = require('internal/options');18 if (getOptionValue('--experimental-default-type') === 'module') {
16 getOptionValue,181 configurable: getOptionValue('--build-snapshot'),231 const value = getOptionValue(option);248 if (getOptionValue('--warnings') &&266 getOptionValue('--no-experimental-fetch')) {316 !getOptionValue('--experimental-global-webcrypto')) {338 !getOptionValue('--experimental-test-coverage')) {348 !getOptionValue('--experimental-global-customevent')) {356 if (!getOptionValue('--trace-sigint')) {379 if (getOptionValue('--expose-internals')) {[all …]
41 if (options.getOptionValue('--diagnostic-dir') !== '') {42 warningFile = options.getOptionValue('--diagnostic-dir');44 if (options.getOptionValue('--redirect-warnings') !== '') {45 warningFile = options.getOptionValue('--redirect-warnings');
8 const { getOptionValue } = require('internal/options');23 const userImports = getOptionValue('--import');
7 const { getOptionValue } = require('internal/options');15 const defaultType = getOptionValue('--experimental-default-type');19 if (getOptionValue('--preserve-symlinks-main')) { return; }29 const preserveSymlinksMain = getOptionValue('--preserve-symlinks-main');52 if (getOptionValue('--experimental-default-type') === 'module') { return true; }58 const userLoaders = getOptionValue('--experimental-loader');63 const userImports = getOptionValue('--import');68 getOptionValue('--experimental-specifier-resolution');79 return pkg.data?.type === 'module' || getOptionValue('--experimental-default-type') === 'module';
29 const { getOptionValue } = require('internal/options');67 const userConditions = getOptionValue('--conditions');68 const noAddons = getOptionValue('--no-addons');
62 const { getOptionValue } = require('internal/options');77 exports.DEFAULT_CIPHERS = getOptionValue('--tls-cipher-list');81 if (getOptionValue('--tls-min-v1.0'))83 else if (getOptionValue('--tls-min-v1.1'))85 else if (getOptionValue('--tls-min-v1.2'))87 else if (getOptionValue('--tls-min-v1.3'))92 if (getOptionValue('--tls-max-v1.3'))94 else if (getOptionValue('--tls-max-v1.2'))
42 const { getOptionValue } = require('internal/options');245 return getOptionValue('--force-fips') ? 1 : getFipsCrypto();249 if (getOptionValue('--force-fips')) {264 const value = getOptionValue('--tls-cipher-list');293 if (getOptionValue('--pending-deprecation')) {
25 const { getOptionValue } = require('internal/options');61 const userConditions = getOptionValue('--conditions');62 const noAddons = getOptionValue('--no-addons');213 const customLoaderURLs = getOptionValue('--experimental-loader');
12 const { getOptionValue } = require('internal/options');21 getOptionValue('--experimental-network-imports');23 getOptionValue('--experimental-specifier-resolution');24 const defaultTypeFlag = getOptionValue('--experimental-default-type');
22 const { getOptionValue } = require('internal/options');134 if (getOptionValue('--experimental-network-imports')) {139 getOptionValue('--experimental-specifier-resolution') === 'node'304 getOptionValue('--inspect-brk')523 const userLoaderPaths = getOptionValue('--experimental-loader');
12 const { getOptionValue } = require('internal/options');15 const policy = getOptionValue('--experimental-policy') ?19 getOptionValue('--experimental-network-imports');
3 const { getOptionValue } = require('internal/options');4 const experimentalImportMetaResolve = getOptionValue('--experimental-import-meta-resolve');
7 const { getOptionValue } = require('internal/options');11 const experimentalWasmModules = getOptionValue('--experimental-wasm-modules');
18 const { getOptionValue } = require('internal/options');28 getOptionValue('--pending-deprecation'),36 getOptionValue('--pending-deprecation'),
7 const { options, aliases, getOptionValue } = require('internal/options');18 assert.strictEqual(getOptionValue('--expose-internals'), true);
4 const { getOptionValue } = require('internal/options');23 const redirect_value = getOptionValue('--redirect-warnings');
28 const { getOptionValue } = require('internal/options');190 const isTestRunner = getOptionValue('--test');191 const coverage = getOptionValue('--experimental-test-coverage');207 destinations = getOptionValue('--test-reporter-destination');208 reporters = getOptionValue('--test-reporter');230 const testNamePatternFlag = getOptionValue('--test-name-pattern');231 testOnlyFlag = getOptionValue('--test-only');
44 function getOptionValue(optionName) { function74 getOptionValue, property