mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
9 lines
219 B
JavaScript
9 lines
219 B
JavaScript
module.exports = {
|
|
roots: ["<rootDir>/demo/static"],
|
|
transform: {
|
|
"^.+\\.ts?$": "ts-jest"
|
|
},
|
|
testRegex: "(/tests/.*(test|spec))\\.ts?$",
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"]
|
|
};
|