I am trying to use Typescript and jspm to make an angular app. The problem is when you want to ensure a .js
file loaded, in jspm you have to write an import and it ensures the file will load before running your code. But Typescript removes my import. This is the Typescript code I have written. I have to load angular-new-router
then add it to my module dependency.
import angular = require('angular');
import MainController = require('./controllers/MainController');
import NgNewRoute = require('angular-new-router');
console.log(angular.version);
var appModule = angular.module('app', ['ngNewRouter']);
MainController.register(appModule);
export = appModule;
My question: How can I instruct Typescript to not remove my import statement, Or I have to do something else to ensure my router loads?
PS: I compile my typescript code to ES5 with commonjs.
EDIT: This question is not the same as TypeScript: import module with only statements. I have this problem working with third party libraries, so I don't want to change them. Also I am using commonjs pattern so amd-dependency
does not fix my problem!
EDIT 2: Another problem is I can not require files other than js modules in my Typescript code.
You need to use something from the
import
as a variable e.ginstead of just :