1{
2 // ...
3 "jest": {
4 "moduleFileExtensions": [
5 "js",
6 "json",
7 // tell Jest to handle `*.vue` files
8 "vue"
9 ],
10 "transform": {
11 // process `*.vue` files with `vue-jest`
12 ".*\\.(vue)$": "vue-jest"
13 }
14 }
15}
16