Когда я использую ng, запустите build --configuration = production (with оптимизация: true), я получаю ошибку в консоли
Uncaught ReferenceError: GeneralDataStateModel is not defined
При оптимизации: false все работает хорошо.
tsconfig. json
"compileOnSave": false,
"compilerOptions": {
"downlevelIteration": true,
"importHelpers": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowJs": true,
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
],
"module": "esnext",
"baseUrl": "./src",
"paths": {
...
}
}