ng build of angular-cli creates 3 files:
inline.bundle.js vendor.bundle.js main.bundle.js
and also a map file for each own. What for?
I
.map files are used for debugging your application. It is not related with angular-cli and is feature of typescript compiler, you may set\unset in tsconfig file like below,
.map
"sourceMap": true\false
Hope this helps!!