forked from Ivasoft/mattermost-mobile
15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
var path = require('path');
|
|
|
|
var config = {
|
|
getProjectRoots() {
|
|
return [
|
|
path.resolve(__dirname, '.')
|
|
];
|
|
}
|
|
};
|
|
|
|
module.exports = config;
|