jest.config.js 326 B

12345678910111213
  1. module.exports = {
  2. preset: "ts-jest/presets/js-with-babel",
  3. moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
  4. transformIgnorePatterns: ["/node_modules/(?!(@jupyterlab/.*)/)"],
  5. globals: {
  6. "ts-jest": {
  7. tsConfig: "./tsconfig.json"
  8. }
  9. },
  10. transform: {
  11. "\\.(ts|tsx)?$": "ts-jest"
  12. }
  13. };