mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
15 lines
351 B
JavaScript
15 lines
351 B
JavaScript
module.exports = {
|
|
preset: "@vue/cli-plugin-unit-jest/presets/typescript-and-babel",
|
|
transform: {
|
|
"^.+\\.vue$": "@vue/vue3-jest"
|
|
},
|
|
transformIgnorePatterns: ['/node_modules/(?!ionicons|@stencil/core|@ionic/core|@ionic/vue|@ionic/vue-router)'],
|
|
globals: {
|
|
"ts-jest": {
|
|
diagnostics: {
|
|
warnOnly: true
|
|
}
|
|
}
|
|
}
|
|
};
|