Skip to content

angular/ngtools-webpack-builds

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Repository files navigation

Snapshot build of @ngtools/webpack

This repository is a snapshot of a commit on the original repository. The original code used to generate this is located athttp://github /angular/angular-cli.

We do not accept PRs or Issues opened on this repository. You should not use this over a tested and released version of this package.

To test this snapshot in your own project, use

npm install git+https://github /angular/ngtools-webpack-builds.git

Angular Compiler Webpack Plugin

Webpack 5.x plugin for the Angular Ahead-of-Time compiler. The plugin also supports Angular JIT mode. When this plugin is used outside of the Angular CLI, the Ivy linker will also be needed to support the usage of Angular libraries. An example configuration of the Babel-based Ivy linker is provided in the linker section. For additional information regarding the linker, please see:https://angular.dev/tools/libraries/creating-libraries#consuming-partial-ivy-code-outside-the-angular-cli

Usage

In your webpack config, add the following plugin and loader.

import{AngularWebpackPlugin}from'@ngtools/webpack';

exports={
/*... */
module:{
rules:[
/*... */
{
test:/\.[jt]sx?$/,
loader:'@ngtools/webpack',
},
],
},

plugins:[
newAngularWebpackPlugin({
tsconfig:'path/to/tsconfig.json',
//... other options as needed
}),
],
};

The loader works with webpack plugin to compile the application's TypeScript. It is important to include both, and to not include any other TypeScript loader.

Options

  • tsconfig[default:tsconfig.json] - The path to the application's TypeScript Configuration file. In thetsconfig.json,you can pass options to the Angular Compiler withangularCompilerOptions.Relative paths will be resolved from the Webpack compilation's context.
  • compilerOptions[default: none] - Overrides options in the application's TypeScript Configuration file (tsconfig.json).
  • jitMode[default:false] - Enables JIT compilation 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.
  • directTemplateLoading[default:true] - 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.
  • fileReplacements[default: none] - Allows replacing TypeScript files with other TypeScript files in the build. This option acts on fully resolved file paths.
  • inlineStyleFileExtension[default: none] - When set inline component styles will be processed by Webpack as files with the provided extension.

Ivy Linker

The Ivy linker can be setup by using the Webpackbabel-loaderpackage. If not already installed, add thebabel-loaderpackage using your project's package manager. Then in your webpack config, add thebabel-loaderwith the following configuration. If thebabel-loaderis already present in your configuration, the linker plugin can be added to the existing loader configuration as well. Enabling caching for thebabel-loaderis recommended to avoid reprocessing libraries on every build. For additional information regarding thebabel-loaderpackage, please see:https://github /babel/babel-loader/tree/main#readme

importlinkerPluginfrom'@angular/compiler-cli/linker/babel';

exports={
/*... */
module:{
rules:[
/*... */
{
test:/\.[cm]?js$/,
use:{
loader:'babel-loader',
options:{
cacheDirectory:true,
compact:false,
plugins:[linkerPlugin],
},
},
},
],
},
};