summaryrefslogtreecommitdiff
path: root/tools/core_import_map.json
AgeCommit message (Collapse)Author
2023-07-02refactor: rename built-in node modules from ext:deno_node/ to node: (#19680)Bartek IwaƄczuk
Closes https://github.com/denoland/deno/issues/19510
2023-06-02chore(tools): Add core import-map (#19346)Aapo Alasuutari
Adds an import map of the core and ext JavaScript files. This was created manually but a script to create one automatically wouldn't be too much of a big thing either. This should make working on especially the Node polyfills much more pleasant, as it gives you feedback on if your imports are correct. Unfortunately the TypeScript declaration files of some of the internal modules clash with the import map and override the data from the actual files with data from the declaration files. Those do not contain all exports nor is their data always up to date. Still, this is much better than not having one.