This commit is contained in:
Yuri Kuznetsov
2022-06-12 22:16:11 +03:00
parent 58b9b5a775
commit 8c7bce4244
2 changed files with 13 additions and 1 deletions
+3 -1
View File
@@ -26,7 +26,9 @@
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
define('views/main', ['view'], function (Dep) {
define('views/main', ['view', 'helpers/test'], function (Dep, Test) {
Test.
return Dep.extend({
+10
View File
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"baseUrl": "client",
"paths": {
"*": ["src/*"],
"crm:*": ["modules/crm/src/*"]
},
"module": "AMD"
}
}