sense-navigation
Version:
Sense Sheet Navigation + Actions visualization extension for Qlik Sense.
27 lines (25 loc) • 624 B
JavaScript
'use strict';
requirejs.config({
baseUrl: '../../build/dev/',
paths: {
angular: './../../node_modules/angular/angular',
chai: './../../node_modules/chai/chai',
underscore: './../../node_modules/underscore/underscore',
lodash: './../../node_modules/lodash/lodash.min',
jquery: './../../node_modules/jquery/dist/jquery',
qlik: './../../test/unit/stubs/qlik.stub',
text: './../../node_modules/requirejs-text/text'
},
shim: {
angular: {
deps: ['jquery'],
exports: 'angular'
},
underscore: {
exports: '_'
},
qlik: {
deps: ['angular']
}
}
});