Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 880 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 880 Bytes

typescript-script

📜🛠 Script tag support for TypeScript.
Based from basarat/typescript-script with Minified Versions

Usage

Add the following lines at the bottom of your page:

<script src="https://cdn.jsdelivr.net/gh/rinminase/typescript-script/ts-services.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/rinminase/typescript-script/ts-transpiler.min.js"></script>

And then you can use script tags that load .ts files or even have inline typescript syntax:

<script type="text/typescript" src="script.ts"></script>
<script type="text/typescript">
    setTimeout(()=>console.log('hello'));
</script>

<script type="text/typescript"> tags should be located above the transpiler and services.

Demo

https://next.plnkr.co/edit/3TCDINcd6LAGcHMm