react-map-gl/ocular-dev-tools.config.js
2019-05-31 13:32:47 -07:00

22 lines
384 B
JavaScript

const {resolve} = require('path');
const config = {
lint: {
paths: ['src', 'examples', 'test'],
extensions: ['js']
},
alias: {
'react-map-gl/test': resolve('./test'),
'react-map-gl': resolve('./src')
},
entry: {
test: 'test/src/index.js',
'test-browser': 'test/browser.js',
size: 'test/size/import-nothing.js'
}
};
module.exports = config;