I am using below two different code to import a file runtime, one of them is working fine while other one throw error.
Working:
System.import('../../FileName.ts').then(classObj => {
console.log(classObj);
});
Not Working:
System.import('App/Models/FileName.ts').then(classObj => {
console.log(classObj);
});
It throw below error :
Can not find module 'App/Models/FileName.ts'
File Structure in which code is written and i also trying to import file from same structure:
(1) Code : ActivityModel.ts (2) Importing : ApplicationModel.ts
Any one can help me to resolve above full path consideration issue.

'./App/Models/FileName'baseURLconfig property of SystemJS?