chore(build): rename .es6 files to .js

Change es6 source files in npm distribution to use .js extensions.

Closes #2447
This commit is contained in:
Rob Wormald
2015-06-10 00:02:37 -07:00
committed by Rado Kirov
parent 6cafaba993
commit 796fc66771
7 changed files with 11 additions and 15 deletions

View File

@ -9,7 +9,7 @@ module.exports = function tsParser(createCompilerHost, log) {
// During migration from Traceur, there is a mix of `.ts`, `.es6` and `.js` (atScript)
// files in the project and the TypeScript compiler only looks for `.ts` files when trying
// to load imports.
extensions: ['.ts', '.js', '.es6'],
extensions: ['.ts', '.js'],
// The options for the TS compiler
options: {