mirror of
https://github.com/visgl/luma.gl.git
synced 2026-02-01 14:33:49 +00:00
30 lines
727 B
JavaScript
30 lines
727 B
JavaScript
const {resolve} = require('path');
|
|
|
|
module.exports = {
|
|
lint: {
|
|
paths: ['modules', 'dev-modules', 'test', 'examples'],
|
|
extensions: ['js']
|
|
},
|
|
|
|
aliases: {
|
|
// DEV MODULES
|
|
// TODO - why is each module not listed?
|
|
'dev-modules': resolve(__dirname, './dev-modules'),
|
|
|
|
// TEST
|
|
test: resolve(__dirname, './test'),
|
|
|
|
// DEPRECATED - For backwards compatibility
|
|
'luma.gl/constants': resolve(__dirname, './modules/main/constants'),
|
|
'luma.gl': resolve(__dirname, './modules/main/src')
|
|
},
|
|
|
|
entry: {
|
|
test: 'test/index.js',
|
|
'test-browser': 'test/browser.js',
|
|
bench: 'test/bench/index.js',
|
|
'bench-browser': 'test/bench/browser.js',
|
|
size: 'test/size/import-nothing.js'
|
|
}
|
|
};
|