diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2023-02-08 22:40:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 22:40:18 +0100 |
commit | 286e5d0be9bb11a69d55f0eedd4a6678b0d48e7d (patch) | |
tree | 37399e924de155fbcbeab975222bdb16f257e228 /core/lib.rs | |
parent | bef50416b92a3ed7bf44b361fc5360f9a52c83e6 (diff) |
refactor: internal runtime code TS support (#17672)
This is a proof of concept for being able to snapshot TypeScript files.
Currently only a single runtime file is authored in TypeScript -
"runtime/js/01_version.ts".
Not needed infrastructure was removed from "core/snapshot_util.rs".
---------
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index 86c432d43..a77701339 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -75,6 +75,7 @@ pub use crate::module_specifier::ModuleSpecifier; pub use crate::module_specifier::DUMMY_SPECIFIER; pub use crate::modules::FsModuleLoader; pub use crate::modules::InternalModuleLoader; +pub use crate::modules::InternalModuleLoaderCb; pub use crate::modules::ModuleId; pub use crate::modules::ModuleLoader; pub use crate::modules::ModuleSource; |