mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-13 17:15:41 +08:00
9 lines
299 B
JavaScript
9 lines
299 B
JavaScript
export default {
|
|
extract: {
|
|
// A common use case is scanning files from the root directory
|
|
include: ['**/*.{vue,jsx,js,ts,tsx}'],
|
|
// if you are excluding files, make sure you always include node_modules and .git
|
|
exclude: ['node_modules', '.git', 'dist']
|
|
}
|
|
};
|