Canvas: Generate Github nodes out of the dodo-app config
Change-Id: Ifc5b09deb39352a3025f7ea66ce39b421daac94d
diff --git a/apps/canvas/config/jest.config.js b/apps/canvas/config/jest.config.js
new file mode 100644
index 0000000..0917325
--- /dev/null
+++ b/apps/canvas/config/jest.config.js
@@ -0,0 +1,19 @@
+/** @type {import('ts-jest').JestConfigWithTsJest} */
+export default {
+ preset: 'ts-jest/presets/default-esm',
+ testEnvironment: 'node',
+ moduleNameMapper: {
+ '^(\\.{1,2}/.*)\\.js$': '$1',
+ },
+ transform: {
+ '^.+\\.tsx?$': [
+ 'ts-jest',
+ {
+ useESM: true,
+ },
+ ],
+ },
+ testMatch: [
+ "**/src/**/*.test.ts"
+ ]
+};
\ No newline at end of file