diff --git a/apps/frontend/jest.config.js b/apps/frontend/jest.config.js index 2c9f35c..fade169 100644 --- a/apps/frontend/jest.config.js +++ b/apps/frontend/jest.config.js @@ -35,7 +35,7 @@ module.exports = { globals: { 'ts-jest': { diagnostics: false, // https://github.com/nrwl/nx/issues/1439#issuecomment-593684534 - tsConfig: '/tsconfig.spec.json', + tsconfig: '/tsconfig.spec.json', stringifyContentPathRegex: '\\.(html|svg)$', astTransformers: { before: [ diff --git a/apps/kafka-proxy/jest.config.js b/apps/kafka-proxy/jest.config.js index 95c0c44..ad195ae 100644 --- a/apps/kafka-proxy/jest.config.js +++ b/apps/kafka-proxy/jest.config.js @@ -2,5 +2,5 @@ module.exports = { displayName: 'kafka-proxy', preset: '../../jest.preset.js', coverageDirectory: '../../coverage/apps/kafka-proxy', - globals: { 'ts-jest': { tsConfig: '/tsconfig.spec.json' } }, + globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json' } }, }; diff --git a/libs/model/jest.config.js b/libs/model/jest.config.js index 9fc26c1..1dc836f 100644 --- a/libs/model/jest.config.js +++ b/libs/model/jest.config.js @@ -19,5 +19,5 @@ module.exports = { }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'], coverageDirectory: '../../coverage/libs/model', - globals: { 'ts-jest': { tsConfig: '/tsconfig.spec.json' } }, + globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json' } }, }; diff --git a/libs/shared/jest.config.js b/libs/shared/jest.config.js index 4c110a6..0fbe1fc 100644 --- a/libs/shared/jest.config.js +++ b/libs/shared/jest.config.js @@ -19,5 +19,5 @@ module.exports = { }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'], coverageDirectory: '../../coverage/libs/shared', - globals: { 'ts-jest': { tsConfig: '/tsconfig.spec.json' } }, + globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json' } }, }; diff --git a/libs/ui/jest.config.js b/libs/ui/jest.config.js index 1f82042..c089714 100644 --- a/libs/ui/jest.config.js +++ b/libs/ui/jest.config.js @@ -35,7 +35,7 @@ module.exports = { globals: { 'ts-jest': { diagnostics: false, // https://github.com/nrwl/nx/issues/1439#issuecomment-593684534 - tsConfig: '/tsconfig.spec.json', + tsconfig: '/tsconfig.spec.json', stringifyContentPathRegex: '\\.(html|svg)$', astTransformers: { before: [ diff --git a/libs/vdb/jest.config.js b/libs/vdb/jest.config.js index 81d7665..ced7bef 100644 --- a/libs/vdb/jest.config.js +++ b/libs/vdb/jest.config.js @@ -19,5 +19,5 @@ module.exports = { '^.+\\.[tj]sx?$': 'ts-jest', }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'], - globals: { 'ts-jest': { tsConfig: '/tsconfig.spec.json' } }, + globals: { 'ts-jest': { tsconfig: '/tsconfig.spec.json' } }, };