Rename app.module.(server|browser).ts to app.(server|browser).module.ts. Fixes #1228.

This commit is contained in:
Steve Sanderson
2017-08-25 11:02:02 -07:00
parent e2030fb1fa
commit 04fe1204a9
6 changed files with 6 additions and 6 deletions

View File

@@ -47,7 +47,7 @@ module.exports = (env) => {
new webpack.optimize.UglifyJsPlugin(),
new AotPlugin({
tsConfigPath: './tsconfig.json',
entryModule: path.join(__dirname, 'ClientApp/app/app.module.browser#AppModule'),
entryModule: path.join(__dirname, 'ClientApp/app/app.browser.module#AppModule'),
exclude: ['./**/*.server.ts']
})
])
@@ -68,7 +68,7 @@ module.exports = (env) => {
// Plugins that apply in production builds only
new AotPlugin({
tsConfigPath: './tsconfig.json',
entryModule: path.join(__dirname, 'ClientApp/app/app.module.server#AppModule'),
entryModule: path.join(__dirname, 'ClientApp/app/app.server.module#AppModule'),
exclude: ['./**/*.browser.ts']
})
]),