8.0.0 • Published 6 years ago
@rush/webpack v8.0.0
Angular Ahead-of-Time Webpack Plugin
Webpack 4.0 plugin that AoT compiles your Angular components and modules.
Usage
In your webpack config, add the following plugin and loader.
Angular version 5 and up, use AngularCompilerPlugin:
import {AngularCompilerPlugin} from '@ngtools/webpack'
exports = { /* ... */
module: {
rules: [
{
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
loader: '@ngtools/webpack'
}
]
},
plugins: [
new AngularCompilerPlugin({
tsConfigPath: 'path/to/tsconfig.json',
entryModule: 'path/to/app.module#AppModule',
sourceMap: true
})
]
}The loader works with webpack plugin to compile your TypeScript. It's important to include both, and to not include any other TypeScript compiler loader.
Options
tsConfigPath. The path to thetsconfig.jsonfile. This is required. In yourtsconfig.json, you can pass options to the Angular Compiler withangularCompilerOptions.basePath. Optional. The root to use by the compiler to resolve file paths. By default, use thetsConfigPathroot.entryModule. Optional if specified inangularCompilerOptions. The path and classname of the main application module. This follows the formatpath/to/file#ClassName.mainPath. Optional ifentryModuleis specified. Themain.tsfile containing the bootstrap code. The plugin will use AST to determine theentryModule.skipCodeGeneration. Optional, defaults to false. Disable code generation and do not refactor the code to bootstrap. This replacestemplateUrl: "string"withtemplate: require("string")(and similar for styles) to allow for webpack to properly link the resources.sourceMap. Optional. Include sourcemaps.compilerOptions. Optional. Override options intsconfig.json.contextElementDependencyConstructor. Optional. Set torequire('webpack/lib/dependencies/ContextElementDependency')if you are havingNo module factory available for dependency type: ContextElementDependencyerrors.directTemplateLoading. Optional. Causes the plugin to load component templates (HTML) directly from the filesystem. This is more efficient if only using theraw-loaderto load component templates. Do not enable this option if additional loaders are configured for component templates.
Features
The benefits and ability of using @ngtools/webpack standalone from the Angular CLI as presented in Stephen Fluin's Angular CLI talk at Angular Connect 2016:
- Compiles Sass/Less into CSS
- TypeScript transpilation
- Bundles JavaScript, CSS
- Asset optimization
- Virtual filesystem for assets
- For serving local assets and compile versions.
- Live-reload via websockets
- Code splitting
- Recognizing the use of
loadChildrenin the router, and bundling those modules separately so that any dependencies of those modules are not going to be loaded as part of your main bundle. These separate bundles will be pulled out of the critical path of your application, making your total application bundle much smaller and loading it much more performant.