UNPKG
@nx/angular-rsbuild
Version:
latest (21.2.0)
next (21.0.0-beta.0)
21.2.0
21.1.0
21.0.4
21.0.3
21.0.2
21.0.1
21.0.0
21.0.0-beta.0
20.9.0
20.8.2
20.8.1
20.8.0
20.8.0-beta.0
20.7.0
20.7.0-beta.0
20.6.2
20.6.2-beta.0
20.6.1
20.6.0
20.6.0-beta.1
20.6.0-beta.0
20.5.0-beta.3
19.0.0-alpha.30
Rsbuild Plugin for building Angular.
github.com/nrwl/angular-rspack
nrwl/angular-rspack
@nx/angular-rsbuild
/
dist
/
lib
/
config
/
load-esm.js
9 lines
(8 loc)
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
loadEsmModule
= loadEsmModule;
let
load;
function
loadEsmModule
(
modulePath
) { load ??=
new
Function
(
'modulePath'
,
`return import(modulePath);`
);
return
load
(modulePath); }