mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The source map does not currently work with the transformer pipeline.
It will be re-enabled after TypeScript 2.4 is made the min version.
To revert to the former compiler, use the `disableTransformerPipeline` in
tsconfig.json:
```
{
"angularCompilerOptions": {
"disableTransformerPipeline": true
}
}
```
30 lines
899 B
Text
30 lines
899 B
Text
--compilation_level=ADVANCED_OPTIMIZATIONS
|
|
--language_out=ES5
|
|
--js_output_file=dist/bundle.js
|
|
--output_manifest=dist/manifest.MF
|
|
--variable_renaming_report=dist/variable_renaming_report
|
|
--property_renaming_report=dist/property_renaming_report
|
|
--create_source_map=%outname%.map
|
|
|
|
--warning_level=QUIET
|
|
--dependency_mode=STRICT
|
|
--rewrite_polyfills=false
|
|
|
|
node_modules/zone.js/dist/zone_externs.js
|
|
|
|
--js node_modules/rxjs/**.js
|
|
--process_common_js_modules
|
|
--module_resolution=node
|
|
|
|
node_modules/@angular/core/@angular/core.js
|
|
--js_module_root=node_modules/@angular/core
|
|
node_modules/@angular/core/src/testability/testability.externs.js
|
|
|
|
node_modules/@angular/common/@angular/common.js
|
|
--js_module_root=node_modules/@angular/common
|
|
|
|
node_modules/@angular/platform-browser/@angular/platform-browser.js
|
|
--js_module_root=node_modules/@angular/platform-browser
|
|
|
|
--js built/**.js
|
|
--entry_point=built/src/main
|