Tam,
Thank you for your compliments. I will pass them onto the dev team.
import { IShop } from 'app/shared/services/shops.service';
import { IShop } from './../../shared/services/shops.service';
Angular projects by default use project relative paths for imports. You can configure the tsconfig json in the project to use absolute paths for imports. Right click on the project > Properties > TypeScript and check which tsconfig json is selected. By default, tsconfig.app.json (config file for angular app) will be selected.
Edit the tsconfig.app.json and set the baseUrl property in the compilerOptions. By default the baseUrl is set to nothing which means that all of the module imports will be relative. You can set the baseUrl to “.” which says āaside from relative paths, look at the . (base) directory as well. You can also set the baseUrl to “app” or “src” or “/src” as per your requirement.
āIdentifier ādealerā is not defined. āTā does not contain such a memberā.
This is a known issue and a bug is already filed for it. We will keep you posted when the fix is out.
ā Invalid location of text (@) in tag
(<div>).
Thank you for reporting it. I have filed a bug for the dev team to fix this validation issue.
Apologies for inconvenience caused. Please let us know if you see any other issues.
–Swapna
MyEclipse Support