diff options
author | 2020-10-12 15:04:06 +0100 | |
---|---|---|
committer | 2020-10-12 15:04:06 +0100 | |
commit | 0abf07647a7f56ecd4b16c3bd0b6aef9cf8052a8 (patch) | |
tree | 324220fcdf616152d8743e59b2ac6dcb6c6db816 /jest.config.js | |
parent | Merge pull request #22 from python-discord/sentry/add-sentry-prefix (diff) | |
parent | Remove unused dependencies (diff) |
Merge pull request #23 from python-discord/build/new-process
Introduce new build system: SWC
Diffstat (limited to 'jest.config.js')
-rw-r--r-- | jest.config.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..165e711 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,6 @@ +module.exports = { + transform: { + '^.+\\.(t|j)sx?$': ['@swc/jest'], + '^.+\\.svg$': ['jest-svg-transformer'] + }, +} |