Using Typescript with RequireJS

Other topics

HTML example using requireJS CDN to include an already compiled TypeScript file.

<body onload="__init();">
    ...
    <script src="http://requirejs.org/docs/release/2.3.2/comments/require.js"></script>
    <script>
      function __init() {
        require(["view/index.js"]);
      }
    </script>
</body>

tsconfig.json example to compile to view folder using requireJS import style.

{
  "module": "amd",    // Using AMD module code generator which works with requireJS
  "rootDir": "./src", // Change this to your source folder
  "outDir": "./view",
    ...      
}

Contributors

Topic Id: 10773

Example Ids: 32300,32301

This site is not affiliated with any of the contributors.