Where are ES5 files generated from Typescript by webpack in Angular2

127 Views Asked by At

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.

2

There are 2 best solutions below

0
On BEST ANSWER

webpack-dev-server is serving all of our files from memory. though in the webpack.dev.js the output is defined as path: helpers.root('dist'), where helper by default has the path to root of the project but you can not see any folder called dist. the easiest way is to install webpack globally and just command webpack or in this case npm run build:prod then the dist folder is getting generated in the root of the project

3
On

I need the ES6 files...

They don't exist separately from the TypeScript files unless you create them. The TypeScript compiler can be told what kind of output to generate (ES3, ES5, ES6/ES2015, etc.) via the --target option, e.g., --target ES2015 (or its synonym --target ES6).

So if you need ES6 files for complexity analysis, you can use the TypeScript compiler to read the TypeScript files and output ES6 files.