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