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.jsthe 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 commandwebpackor in this casenpm run build:prodthen thedistfolder is getting generated in the root of the project