mirror of
https://gitee.com/antv/g6.git
synced 2024-12-02 11:48:29 +08:00
79c18aa59d
* feat(elements): add html node * fix: fix issue that unexpected invoke sequence cause exception * refactor: adjust exports * feat(react): create g6-extension-react * test: update test case * chore: update dependencies * fix: fix cr issue * chore: adjust jest config
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
module.exports = {
|
|
transform: {
|
|
'^.+\\.[tj]s$': ['@swc/jest'],
|
|
},
|
|
testRegex: '(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$',
|
|
collectCoverageFrom: ['src/**/*.ts'],
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],
|
|
};
|