Angular 5 个网络包 3 个 aot
Angular 5 webpack 3 aot
我正在尝试使用 webpack 3 和 angular 5 进行 aot 构建,但是网上有很多教程并且 none 显示了没有问题的完整示例,到目前为止我'我们有以下配置:
(对于那些对路径有疑问的人 - 我在 java 应用程序中使用它)
webpack.config.aot.js:
const webpack = require("webpack");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const ngToolsWebpack = require('@ngtools/webpack');
module.exports = {
context: __dirname + "/src/main/webapp/resources/script/",
entry: {
app: "./core/main.aot.ts",
vendor: "./vendor.ts",
polyfills: "./polyfills.ts"
},
output: {
filename: 'js/[name].js',
chunkFilename: "js/chunks/[id].chunk.js",
publicPath: "resources/compiled/",
path: __dirname + '/src/main/webapp/resources/compiled'
},
resolve: {
alias: {
STYLES: __dirname + "/src/main/webapp/resources/css/",
SCRIPT: __dirname + "/src/main/webapp/script/"
},
extensions: [".js", ".json", ".scss", ".ts"]
},
module: {
rules: [
{
test: /[\/]angular\.js$/,
loader: 'exports-loader?angular'
},
{
test: /\.html$/,
loader: 'raw-loader'
},
{
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
loader: '@ngtools/webpack'
}
]
},
plugins: [
new ngToolsWebpack.AngularCompilerPlugin({
tsConfigPath: './tsconfig.aot.json',
entryModule: './src/main/webapp/resources/script/core/i18n/app.module.en#AppModule'
})
]
};
tsconfig.aot.json:
{
"compilerOptions": {
"module": "es2015",
"moduleResolution": "node",
"target": "es5",
"noImplicitAny": false,
"sourceMap": true,
"mapRoot": "",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2015",
"dom"
],
"outDir": "lib",
"skipLibCheck": true,
"rootDir": "."
},
"exclude": [
"node_modules/*",
"target/*"
],
"angularCompilerOptions": {
"genDir": "./src/main/webapp/resources/script/factory",
"rootDir": ".",
"baseUrl": "/"
}
}
main.aot.ts:
import {platformBrowser} from '@angular/platform-browser';
import {enableProdMode} from "@angular/core";
import {AppModuleNgFactory} from '../factory/app/app.module.ngfactory';
enableProdMode();
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
文件结构(简化):
- webpack.config.aot.js
- tsconfig.aot.js
- src/
- main/
- webapp/
- resources/
- script/
- vendor.ts
- polyfills.ts
- core/
- main.aot.ts
- i18n/
- app.module.en.ts
(如果我没有展示相关内容,请告诉我)
所以当我尝试使用 webpack -p --config ./webpack.config.aot.js
构建它时
我收到以下错误:
ERROR in src/main/webapp/resources/script/core/main.aot.ts(5,34): error TS2307: Cannot find module '../factory/app/app.module.ngfactory'.
这听起来很合理,因为那里没有 AppModuleNgFactory,但正如我在教程中看到的那样,它应该是在 aot 构建时使用 genDir 生成的,对吗? (请注意,如果我省略了 app/ 文件夹,那么路径看起来是 '../factory/app.module.ngfactory' 我得到同样的错误)
用@ngtools/webpack指向aot构建中不存在的AppModuleNgFactory是否正确?
AppModuleNgFactory 是什么? angular 站点
上几乎没有关于它的任何文档
我应该在配置中更改什么才能成功生成 aot 构建?
如果我将主文件更改为 bootstrap AppModule 本身,它会成功构建,但在浏览器中出现 NullInjectorError: No provider for t!
错误
没有缩小显示:No provider for CompilerFactory!
@ngtools/webpack 似乎可以从原始主文件处理引导模块工厂本身,例如 webpack 条目应该是:path_to_file/main.ts
和main.ts包含:
platformBrowserDynamic().bootstrapModule(AppModule);
整个事情将自行处理,无需额外配置!
真的很厉害
我认为接受的答案不正确。我遇到了同样的问题,我的问题有两个原因:
我必须在 tsconfig
中包含该模块:
"include": [
"ng/src/main/app.module.ts",
"ng/src/main.aot.ts"
]
我在 main.aot.ts
中的包含只是引用了源文件,但带有 ngfactory
后缀:
import { MainModuleNgFactory } from './main/app.module.ngfactory';
我正在尝试使用 webpack 3 和 angular 5 进行 aot 构建,但是网上有很多教程并且 none 显示了没有问题的完整示例,到目前为止我'我们有以下配置: (对于那些对路径有疑问的人 - 我在 java 应用程序中使用它)
webpack.config.aot.js:
const webpack = require("webpack");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const ngToolsWebpack = require('@ngtools/webpack');
module.exports = {
context: __dirname + "/src/main/webapp/resources/script/",
entry: {
app: "./core/main.aot.ts",
vendor: "./vendor.ts",
polyfills: "./polyfills.ts"
},
output: {
filename: 'js/[name].js',
chunkFilename: "js/chunks/[id].chunk.js",
publicPath: "resources/compiled/",
path: __dirname + '/src/main/webapp/resources/compiled'
},
resolve: {
alias: {
STYLES: __dirname + "/src/main/webapp/resources/css/",
SCRIPT: __dirname + "/src/main/webapp/script/"
},
extensions: [".js", ".json", ".scss", ".ts"]
},
module: {
rules: [
{
test: /[\/]angular\.js$/,
loader: 'exports-loader?angular'
},
{
test: /\.html$/,
loader: 'raw-loader'
},
{
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
loader: '@ngtools/webpack'
}
]
},
plugins: [
new ngToolsWebpack.AngularCompilerPlugin({
tsConfigPath: './tsconfig.aot.json',
entryModule: './src/main/webapp/resources/script/core/i18n/app.module.en#AppModule'
})
]
};
tsconfig.aot.json:
{
"compilerOptions": {
"module": "es2015",
"moduleResolution": "node",
"target": "es5",
"noImplicitAny": false,
"sourceMap": true,
"mapRoot": "",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2015",
"dom"
],
"outDir": "lib",
"skipLibCheck": true,
"rootDir": "."
},
"exclude": [
"node_modules/*",
"target/*"
],
"angularCompilerOptions": {
"genDir": "./src/main/webapp/resources/script/factory",
"rootDir": ".",
"baseUrl": "/"
}
}
main.aot.ts:
import {platformBrowser} from '@angular/platform-browser';
import {enableProdMode} from "@angular/core";
import {AppModuleNgFactory} from '../factory/app/app.module.ngfactory';
enableProdMode();
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
文件结构(简化):
- webpack.config.aot.js
- tsconfig.aot.js
- src/
- main/
- webapp/
- resources/
- script/
- vendor.ts
- polyfills.ts
- core/
- main.aot.ts
- i18n/
- app.module.en.ts
(如果我没有展示相关内容,请告诉我)
所以当我尝试使用 webpack -p --config ./webpack.config.aot.js
我收到以下错误:
ERROR in src/main/webapp/resources/script/core/main.aot.ts(5,34): error TS2307: Cannot find module '../factory/app/app.module.ngfactory'.
这听起来很合理,因为那里没有 AppModuleNgFactory,但正如我在教程中看到的那样,它应该是在 aot 构建时使用 genDir 生成的,对吗? (请注意,如果我省略了 app/ 文件夹,那么路径看起来是 '../factory/app.module.ngfactory' 我得到同样的错误)
用@ngtools/webpack指向aot构建中不存在的AppModuleNgFactory是否正确?
AppModuleNgFactory 是什么? angular 站点
上几乎没有关于它的任何文档我应该在配置中更改什么才能成功生成 aot 构建?
如果我将主文件更改为 bootstrap AppModule 本身,它会成功构建,但在浏览器中出现 NullInjectorError: No provider for t!
错误
没有缩小显示:No provider for CompilerFactory!
@ngtools/webpack 似乎可以从原始主文件处理引导模块工厂本身,例如 webpack 条目应该是:path_to_file/main.ts
和main.ts包含:
platformBrowserDynamic().bootstrapModule(AppModule);
整个事情将自行处理,无需额外配置!
真的很厉害
我认为接受的答案不正确。我遇到了同样的问题,我的问题有两个原因:
我必须在 tsconfig
中包含该模块:
"include": [
"ng/src/main/app.module.ts",
"ng/src/main.aot.ts"
]
我在 main.aot.ts
中的包含只是引用了源文件,但带有 ngfactory
后缀:
import { MainModuleNgFactory } from './main/app.module.ngfactory';