emonney / QuickApp

ASP.NET Core / Angular startup project template with complete login, user and role management. Plus other useful services for Quick Application Development
https://www.ebenmonney.com/quickapp
MIT License
1.26k stars 594 forks source link

ERROR in error TS1149 #128

Closed chaldon closed 5 years ago

chaldon commented 5 years ago

Trying to run app on Mac right after checkout. Got:

ERROR in error TS1149: File name '/QuickApp/src/QuickApp/ClientApp/src/app/services/db-keys.ts' differs from already included file name '/QuickApp/src/QuickApp/ClientApp/src/app/services/db-Keys.ts' only in casing.

The problem is in 2 files - auth.service.ts and configration.service.ts Replacing rows import { DBkeys } from './db-Keys'; to import { DBkeys } from './db-keys'; fix the problem.

emonney commented 5 years ago

Fixed in dcc2fba83f751648f31d5f84ebc772ae8e4512ad Thanks for reporting