According to Angular2 docs, TypeScript is at final downgraded to ES5. my question is when I run the app (npm run server, or npm start) how can have access to ES6-with-decorators or ES5 translated files of Angular2 app. the current app I have now is created by webpack-angular2-starter.
I need the ES6 or ES5 files for complexity analysis, cause I am using Plato that I think is the best in this work.
webpack-dev-server is serving all of our files from memory. though in the
webpack.dev.js
the output is defined aspath: helpers.root('dist'),
where helper by default has the path to root of the project but you can not see any folder calleddist
. the easiest way is to install webpack globally and just commandwebpack
or in this casenpm run build:prod
then thedist
folder is getting generated in the root of the project