mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 20:47:42 +01:00
15 lines
358 B
JavaScript
15 lines
358 B
JavaScript
|
|
module.exports = {
|
||
|
|
verbose: true,
|
||
|
|
roots: ['<rootDir>/src/', '<rootDir>/tests/'],
|
||
|
|
moduleFileExtensions: ['js'],
|
||
|
|
transform: {
|
||
|
|
'^.+\\.js$': 'babel-jest',
|
||
|
|
'^.+\\.vue$': 'vue-jest',
|
||
|
|
},
|
||
|
|
transformIgnorePatterns: [`/node_modules`],
|
||
|
|
snapshotSerializers: ['jest-serializer-vue'],
|
||
|
|
moduleNameMapper: {
|
||
|
|
'^@/(.*)$': '<rootDir>/src/$1',
|
||
|
|
},
|
||
|
|
};
|