Answers for "connect typescript file to html"

1

import js file in typescript

// Add to tsconfig.json:
{
  "compilerOptions": {
      ...
      "allowJs": true
      ...
  }
}
  
import MyModule from './../pages/MyModule';
Posted by: Guest on April-27-2021
0

adding html in typescript

this.htmlToAdd = '<div class="two">two</div>';
Posted by: Guest on December-02-2020

Code answers related to "connect typescript file to html"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language