UNPKG

xuanxuan

Version:

企业即时通讯平台

55 lines (47 loc) 1.25 kB
/** * Base webpack config used across other specific configs */ import path from 'path'; import validate from 'webpack-validator'; import { dependencies as externals } from './app/package.json'; export default validate({ module: { loaders: [{ test: /\.jsx?$/, loaders: ['babel-loader'], exclude: /node_modules/ }, { test: /\.json$/, loader: 'json-loader' }], noParse: [/pouchdb/, /granim/, /ajv/] }, output: { path: path.join(__dirname, 'app'), filename: 'bundle.js', // https://github.com/webpack/webpack/issues/1114 libraryTarget: 'commonjs2' }, // https://webpack.github.io/docs/configuration.html#resolve resolve: { extensions: ['', '.js', '.jsx', '.json'], packageMains: ['webpack', 'browser', 'web', 'browserify', ['jam', 'main'], 'main'], alias: { Theme: 'theme.js', App: 'app.js', Resource: 'resource.js', Lang: 'lang.js', Events: 'event-center.js', Helper: 'utils/helper.js', Components: 'views/components', Views: 'views', Utils: 'utils', Models: 'models' }, root: path.join(__dirname, 'app') }, plugins: [], externals: Object.keys(externals || {}) });