mirror of
https://github.com/nodejs/node.git
synced 2025-04-28 13:40:37 +00:00

Files in `node_modules` are not authored by the user directly and the original sources are less relevant to the user. Skipping source maps in `node_modules` improves the general performance. Add `module.setSourceMapsSupport(enabled, options)` to skip source maps in `node_modules` if it is needed. This moves all source maps related API to `node:module` and this a step to promote the source maps API to stable. PR-URL: https://github.com/nodejs/node/pull/56639 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const {
|
|
findSourceMap,
|
|
getSourceMapsSupport,
|
|
setSourceMapsSupport,
|
|
} = require('internal/source_map/source_map_cache');
|
|
const { Module } = require('internal/modules/cjs/loader');
|
|
const { register } = require('internal/modules/esm/loader');
|
|
const {
|
|
SourceMap,
|
|
} = require('internal/source_map/source_map');
|
|
const {
|
|
constants,
|
|
enableCompileCache,
|
|
flushCompileCache,
|
|
getCompileCacheDir,
|
|
} = require('internal/modules/helpers');
|
|
const {
|
|
findPackageJSON,
|
|
} = require('internal/modules/package_json_reader');
|
|
const { stripTypeScriptTypes } = require('internal/modules/typescript');
|
|
|
|
Module.register = register;
|
|
Module.constants = constants;
|
|
Module.enableCompileCache = enableCompileCache;
|
|
Module.findPackageJSON = findPackageJSON;
|
|
Module.flushCompileCache = flushCompileCache;
|
|
Module.getCompileCacheDir = getCompileCacheDir;
|
|
Module.stripTypeScriptTypes = stripTypeScriptTypes;
|
|
|
|
// SourceMap APIs
|
|
Module.findSourceMap = findSourceMap;
|
|
Module.SourceMap = SourceMap;
|
|
Module.getSourceMapsSupport = getSourceMapsSupport;
|
|
Module.setSourceMapsSupport = setSourceMapsSupport;
|
|
|
|
module.exports = Module;
|