When generating an Angular project using the latest version of igniteui-cli, the app.config.ts file contains incorrect import statements. The imports for Ignite UI for Angular components are incorrectly generated with a placeholder (<%=igxPackage%>) instead of the actual package name (igniteui-angular). This results in a TypeScript error during application bundle generation.
Description
When generating an Angular project using the latest version of igniteui-cli, the app.config.ts file contains incorrect import statements. The imports for Ignite UI for Angular components are incorrectly generated with a placeholder (
<%=igxPackage%>
) instead of the actual package name (igniteui-angular
). This results in a TypeScript error during application bundle generation.Steps to reproduce
Result
The project fails to build due to a TypeScript error caused by incorrect imports in the
app.config.ts
file. The import statement:Expected result
The app.config.ts file should contain valid import statements, importing from
igniteui-angular
:Attachments
Test-App-Error.zip