mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
11 lines
394 B
JavaScript
11 lines
394 B
JavaScript
/**
|
|
* @typedef {import('./src/types').BasicOptions} BasicOptions
|
|
* @typedef {import('./src/types').SpaOptions} SpaOptions
|
|
*/
|
|
|
|
const { createBasicConfig } = require('./src/createBasicConfig');
|
|
const { createSpaConfig } = require('./src/createSpaConfig');
|
|
const { createMpaConfig } = require('./src/createMpaConfig');
|
|
|
|
module.exports = { createBasicConfig, createSpaConfig, createMpaConfig };
|