@@ -41,9 +41,9 @@ It is useful to have type information for the API of libraries you use.
## Files ##
*`*.ts` are source code.
*`*.d.ts` are ambient declarations for libraries.
*`_all.ts` is used to enumerate add file references in the project for benefit of TypeScript compiler.
*`*.js` are generated by compiler, except in `js/libs` folder.
*`*.js.map` are [source maps](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) generated by compiler, for better debugging experience.
*`*.js` are generated by the compiler, except in `js/libs` folder.
*`*.js.map` are [source maps](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) generated by the compiler, for better debugging experience.
*`_all.ts` is convention used to enumerate file references in the project for benefit of TypeScript compiler.
If the number of files grows, you could put an `_all.ts` file into each folder, move all nested references to it and reference the nested `_all.ts` from the parent `_all.ts`.