First of all, thank you for all the hard work you've put into this library. You've made it possible for us to use MVC optimization to compile Bootstrap 3.0.
We're also interested in starting to use TypeScript. In one of my initial tests to get a feel for the language, however, I stumbled upon a frustrating error when trying to create exported classes.
It seems that when a class is exported using the 'export' keyword, the translation fails in the InnerTranslate() function of the TypeScriptTranslator.
To demonstrate the problem, I created a small project and [made it available](https://bitbucket.org/Dvde/typescripterror). Could you find the time to find out what is going wrong?
Comments: Hello, DaveVdE! Here the problem is not in the Bundle Transformer. This code does not work in the command-line version TypeScript: ``` error TS5037: Cannot compile external modules unless the '--module' flag is provided. ``` A class can only export from the module: ``` module MyModule { export class Example { } } ``` I know that your code works in http://www.typescriptlang.org/Playground/, but Bundle Transformer does not support external modules (CommonJS and AMD). Support for this possibility difficult to implement due to the specificity of the loading of external modules. I recommend when learning to use the command-line version of the TypeScript. Also recommend you try the Web Essentials (http://vswebessentials.com/).
We're also interested in starting to use TypeScript. In one of my initial tests to get a feel for the language, however, I stumbled upon a frustrating error when trying to create exported classes.
It seems that when a class is exported using the 'export' keyword, the translation fails in the InnerTranslate() function of the TypeScriptTranslator.
To demonstrate the problem, I created a small project and [made it available](https://bitbucket.org/Dvde/typescripterror). Could you find the time to find out what is going wrong?
Comments: Hello, DaveVdE! Here the problem is not in the Bundle Transformer. This code does not work in the command-line version TypeScript: ``` error TS5037: Cannot compile external modules unless the '--module' flag is provided. ``` A class can only export from the module: ``` module MyModule { export class Example { } } ``` I know that your code works in http://www.typescriptlang.org/Playground/, but Bundle Transformer does not support external modules (CommonJS and AMD). Support for this possibility difficult to implement due to the specificity of the loading of external modules. I recommend when learning to use the command-line version of the TypeScript. Also recommend you try the Web Essentials (http://vswebessentials.com/).