mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
17 lines
271 B
JavaScript
17 lines
271 B
JavaScript
|
module.exports = {
|
||
|
"roots": [
|
||
|
"resources/js/src"
|
||
|
],
|
||
|
"transform": {
|
||
|
"^.+\\.tsx?$": "ts-jest"
|
||
|
},
|
||
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
|
||
|
"moduleFileExtensions": [
|
||
|
"ts",
|
||
|
"tsx",
|
||
|
"js",
|
||
|
"jsx",
|
||
|
"json",
|
||
|
"node"
|
||
|
],
|
||
|
}
|