mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
module.exports = {
|
|
// Jest transformations -- this adds support for TypeScript
|
|
// using ts-jest
|
|
transform: {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
|
|
// Module file extensions for importing
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"]
|
|
};
|