@ngtools/webpack 20.0.0-next.3 → 20.0.0-next.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngtools/webpack",
3
- "version": "20.0.0-next.3",
3
+ "version": "20.0.0-next.5",
4
4
  "description": "Webpack plugin that AoT compiles your Angular components and modules.",
5
5
  "main": "./src/index.js",
6
6
  "typings": "src/index.d.ts",
package/src/ivy/plugin.js CHANGED
@@ -308,6 +308,7 @@ class AngularWebpackPlugin {
308
308
  }
309
309
  loadConfiguration() {
310
310
  const { options: compilerOptions, rootNames, errors, } = this.compilerCli.readConfiguration(this.pluginOptions.tsconfig, this.pluginOptions.compilerOptions);
311
+ compilerOptions.composite = false;
311
312
  compilerOptions.noEmitOnError = false;
312
313
  compilerOptions.suppressOutputPathCheck = true;
313
314
  compilerOptions.outDir = undefined;