Я настроил угловое универсальное приложение, используя angular 5.2.10 Когда я пытаюсь собрать его с помощью angular cli и webpack для server.ts, кажется, что мои модули не найдены.
Что работает:
ng build -prod --build-optimizer --app 0
&&
ng build --aot --app 1 --output-hashing=false
Что не:
webpack --config webpack.config.js --progress --colors
Ошибка:
ERROR in /src/app/util/wnumb.ts
[tsl] ERROR in /src/app/util/wnumb.ts(1,26)
TS2307: Cannot find module '@angular/core'.
ERROR in /src/app/terms-and-conditions/terms-and-conditions.component.ts
[tsl] ERROR in /src/app/terms-and-conditions/terms-and-
conditions.component.ts(1,27)
TS2307: Cannot find module '@angular/core'.
ERROR in /src/app/terms-and-conditions/terms-and-conditions.component.ts
[tsl] ERROR in /src/app/terms-and-conditions/terms-and-
conditions.component.ts(2,24)
TS2307: Cannot find module '@angular/router'.
Мой файл webpack.config.js:
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: { server: './src/server.ts' },
resolve: { extensions: ['.js','.ts'] },
target: 'node',
// this makes sure we include node_modules and other 3rd party libraries
externals: [/(node_modules|main\..*\.js)/],
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].js'
},
module: {
rules: [{ test: /\.ts$/, loader: 'ts-loader' }]
},
plugins: [
new webpack.ContextReplacementPlugin(
/(.+)?angular(\\|\/)core(.+)?/,
path.join(__dirname, 'src'), // location of your src
{} // a map of your routes
),
new webpack.ContextReplacementPlugin(
/(.+)?express(\\|\/)(.+)?/,
path.join(__dirname, 'src'),
{}
)
]
};
И мой tsconfig.json:
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"mapRoot": "./src/",
"removeComments": true,
"sourceMap": true,
"target": "es2017",
"typeRoots": [
"./node_modules/@types"
]
}
}
Примечание: любая помощь будет принята с благодарностью.