diff --git a/client/src/views/main.js b/client/src/views/main.js index ca9b3dea63..91a10c3cc8 100644 --- a/client/src/views/main.js +++ b/client/src/views/main.js @@ -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({ diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000000..c2ba18ca74 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "baseUrl": "client", + "paths": { + "*": ["src/*"], + "crm:*": ["modules/crm/src/*"] + }, + "module": "AMD" + } +}