diff --git a/.grunt/tasks/jsconfig.js b/.grunt/tasks/jsconfig.js index 33fbfb50d40..9e32c2ebcbe 100644 --- a/.grunt/tasks/jsconfig.js +++ b/.grunt/tasks/jsconfig.js @@ -43,8 +43,8 @@ module.exports = (grunt) => { const componentData = fetchComponentData().components; for (const [thisPath, component] of Object.entries(componentData)) { - jsconfigData.compilerOptions.paths[`${component}/*`] = [`public/${thisPath}/amd/src/*`]; - jsconfigData.include.push(`public/${thisPath}/amd/src/**/*`); + jsconfigData.compilerOptions.paths[`${component}/*`] = [`${thisPath}/amd/src/*`]; + jsconfigData.include.push(`${thisPath}/amd/src/**/*`); } grunt.file.write('jsconfig.json', JSON.stringify(jsconfigData, null, " ") + "\n");