diff --git a/jest.config.d.ts b/jest.config.d.ts deleted file mode 100644 index 96e76cfc77..0000000000 --- a/jest.config.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -import type { Config } from '@jest/types' - -declare const config: Partial -export default config diff --git a/jest.config.js b/jest.config.js deleted file mode 100644 index 66acd90f5f..0000000000 --- a/jest.config.js +++ /dev/null @@ -1,17 +0,0 @@ -const config = { - rootDir: '.', - verbose: true, - projects: ['web', 'native', 'api-client', 'translations'], - reporters: [ - ['default', {}], - [ - 'jest-junit', - { - outputDirectory: '/reports/unit-test', - }, - ], - ], - coverageDirectory: '/reports/coverage', - collectCoverageFrom: ['**/src/**/*.{ts,tsx}'], -} -export default config diff --git a/tsconfig.json b/tsconfig.json index 3b4c78bb88..e818fc3f3a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "composite": true, + "allowJs": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "lib": ["ES5", "ES6"], @@ -12,7 +13,8 @@ "strict": true, "target": "ESNext", "skipLibCheck": true, - "useDefineForClassFields": false + "useDefineForClassFields": false, + "outDir": "dist" }, "include": ["jest.config.ts", ".prettierrc.js", ".eslintrc.js", ".eslintrc_changed.js"], "references": [