createCoreConfig.js 231 B

12345678910
  1. const path = require('path')
  2. const createConfig = require('./createConfig')
  3. module.exports = function(settings) {
  4. return createConfig(settings, {
  5. entry: {
  6. fullcalendar: path.resolve(__dirname, '../../src/main.ts')
  7. }
  8. })
  9. }