@ngtools/webpack 14.2.3 → 15.0.0-next.1
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 +2 -2
- package/src/ivy/plugin.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngtools/webpack",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0-next.1",
|
|
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",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@angular/compiler-cli": "^
|
|
29
|
+
"@angular/compiler-cli": "^15.0.0-next",
|
|
30
30
|
"typescript": ">=4.6.2 <4.9",
|
|
31
31
|
"webpack": "^5.54.0"
|
|
32
32
|
},
|
package/src/ivy/plugin.js
CHANGED
|
@@ -316,7 +316,6 @@ class AngularWebpackPlugin {
|
|
|
316
316
|
}
|
|
317
317
|
loadConfiguration() {
|
|
318
318
|
const { options: compilerOptions, rootNames, errors, } = this.compilerCli.readConfiguration(this.pluginOptions.tsconfig, this.pluginOptions.compilerOptions);
|
|
319
|
-
compilerOptions.enableIvy = true;
|
|
320
319
|
compilerOptions.noEmitOnError = false;
|
|
321
320
|
compilerOptions.suppressOutputPathCheck = true;
|
|
322
321
|
compilerOptions.outDir = undefined;
|