Entrapta Jones
Entrapta Jones
This PR adds support for Netbox V3.3 which has issues with importing from netbox.api directly and you need to import from thre submodules. WARNING Okay, so I haven't written any...
This adds worker threads for TypeScript transpile, cleans up the findFiles function, refactors the dynamic module loader to allow for the fixing of the #1 issue
Right now the performance of the module could/can be greatly speed up if a few of the resource intensive function cache their response.
Provide a "dev" mode that will report type errors and also allow for hot swapping of module code upon file chaging.
Somehow provide a way to allow users to specify TypeScript transformers to run during the transpile.
Currently this module does not type-check or report errors. The current `ts.transpileModule`function that is used to transpile a single source file at a time doesn't support inferring TypeScript type errors...
I would like to handle the transpiring/checking of the TypeScript code in [Worker Threads](https://nodejs.org/api/worker_threads.html) I've seen the transpile of large files/projects bring the entire event loop to it's knees and...