aboutsummaryrefslogtreecommitdiffstats
path: root/jest.config.js
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-10-12 15:04:06 +0100
committerGravatar GitHub <[email protected]>2020-10-12 15:04:06 +0100
commit0abf07647a7f56ecd4b16c3bd0b6aef9cf8052a8 (patch)
tree324220fcdf616152d8743e59b2ac6dcb6c6db816 /jest.config.js
parentMerge pull request #22 from python-discord/sentry/add-sentry-prefix (diff)
parentRemove 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.js6
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']
+ },
+}