Skip to content

Commit

Permalink
chore(tsconfig.json): update tsc build configuration
Browse files Browse the repository at this point in the history
- tsconfig points es6 build configuration by default
  • Loading branch information
kwonoj authored and benlesh committed Oct 26, 2015
1 parent 89c750b commit bccddb6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*.sublime-project
*.sublime-workspace
.settings
.vscode

# Installed libs
node_modules/
Expand Down
12 changes: 8 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"target": "es5",
"module": "commonjs",
"outDir": "dist/cjs"
}
"declaration": true,
"target": "es6",
"outDir": "dist/es6"
},
"files": [
"src/Rx.ts",
"src/Rx.KitchenSink.ts"
]
}

0 comments on commit bccddb6

Please sign in to comment.