If I copy ts-browser down to my project locally, and load the module as so:
<script type="module">
import {loadModule} from './ts-browser/src/ts-browser.js';
loadModule('./index.ts');
</script>
It still calls out to various klesun urls to pull down worker scripts and ts compiler js:
|
const url = 'https://klesun-misc.github.io/TypeScript/lib/typescriptServices.js'; |
possibly other places too. Is it possible to make ts-browser self contained so I have no external dependence on your hosted urls?
Edit: I should add this is a very cool project!
If I copy ts-browser down to my project locally, and load the module as so:
It still calls out to various klesun urls to pull down worker scripts and ts compiler js:
ts-browser/src/TranspileWorker.js
Line 3 in cd85cdc
ts-browser/src/cdnEs6Wrappers/typescriptServices.js
Line 12 in cd85cdc
possibly other places too. Is it possible to make ts-browser self contained so I have no external dependence on your hosted urls?
Edit: I should add this is a very cool project!