diff --git a/apps/explorer/jest.config.js b/apps/explorer/jest.config.ts similarity index 94% rename from apps/explorer/jest.config.js rename to apps/explorer/jest.config.ts index 21c4b37c8..7a2cbc890 100644 --- a/apps/explorer/jest.config.js +++ b/apps/explorer/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'explorer', preset: '../../jest.preset.js', diff --git a/apps/explorer/project.json b/apps/explorer/project.json index 0c803b613..6dbb4243e 100644 --- a/apps/explorer/project.json +++ b/apps/explorer/project.json @@ -62,7 +62,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/apps/explorer"], "options": { - "jestConfig": "apps/explorer/jest.config.js", + "jestConfig": "apps/explorer/jest.config.ts", "passWithNoTests": true } }, diff --git a/apps/explorer/tsconfig.app.json b/apps/explorer/tsconfig.app.json index 252904bb7..b2447df1e 100644 --- a/apps/explorer/tsconfig.app.json +++ b/apps/explorer/tsconfig.app.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/apps/explorer/tsconfig.spec.json b/apps/explorer/tsconfig.spec.json index 8c00a45c0..703c42d11 100644 --- a/apps/explorer/tsconfig.spec.json +++ b/apps/explorer/tsconfig.spec.json @@ -14,7 +14,8 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ], "files": [ "../../node_modules/@nrwl/react/typings/cssmodule.d.ts", diff --git a/apps/simple-trading-app/jest.config.js b/apps/simple-trading-app/jest.config.ts similarity index 95% rename from apps/simple-trading-app/jest.config.js rename to apps/simple-trading-app/jest.config.ts index 04aee0216..f640801e8 100644 --- a/apps/simple-trading-app/jest.config.js +++ b/apps/simple-trading-app/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'simple-trading-app', preset: '../../jest.preset.js', diff --git a/apps/simple-trading-app/project.json b/apps/simple-trading-app/project.json index ee71ca368..aba2f7af4 100644 --- a/apps/simple-trading-app/project.json +++ b/apps/simple-trading-app/project.json @@ -65,7 +65,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/apps/simple-trading-app"], "options": { - "jestConfig": "apps/simple-trading-app/jest.config.js", + "jestConfig": "apps/simple-trading-app/jest.config.ts", "passWithNoTests": true } }, diff --git a/apps/simple-trading-app/tsconfig.app.json b/apps/simple-trading-app/tsconfig.app.json index 252904bb7..b2447df1e 100644 --- a/apps/simple-trading-app/tsconfig.app.json +++ b/apps/simple-trading-app/tsconfig.app.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/apps/simple-trading-app/tsconfig.spec.json b/apps/simple-trading-app/tsconfig.spec.json index 5fdba7eb6..32b355860 100644 --- a/apps/simple-trading-app/tsconfig.spec.json +++ b/apps/simple-trading-app/tsconfig.spec.json @@ -17,6 +17,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/apps/stats/jest.config.js b/apps/stats/jest.config.ts similarity index 94% rename from apps/stats/jest.config.js rename to apps/stats/jest.config.ts index f9632ad16..13a8512e0 100644 --- a/apps/stats/jest.config.js +++ b/apps/stats/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'stats', preset: '../../jest.preset.js', diff --git a/apps/stats/project.json b/apps/stats/project.json index cea53e04e..ce108dad2 100644 --- a/apps/stats/project.json +++ b/apps/stats/project.json @@ -61,7 +61,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/apps/stats"], "options": { - "jestConfig": "apps/stats/jest.config.js", + "jestConfig": "apps/stats/jest.config.ts", "passWithNoTests": true } } diff --git a/apps/stats/tsconfig.app.json b/apps/stats/tsconfig.app.json index 252904bb7..b2447df1e 100644 --- a/apps/stats/tsconfig.app.json +++ b/apps/stats/tsconfig.app.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/apps/stats/tsconfig.spec.json b/apps/stats/tsconfig.spec.json index 95ef66a08..2fd491d52 100644 --- a/apps/stats/tsconfig.spec.json +++ b/apps/stats/tsconfig.spec.json @@ -14,7 +14,8 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ], "files": [ "../../node_modules/@nrwl/react/typings/cssmodule.d.ts", diff --git a/apps/token/jest.config.js b/apps/token/jest.config.ts similarity index 94% rename from apps/token/jest.config.js rename to apps/token/jest.config.ts index ce9043eab..34b13c8f1 100644 --- a/apps/token/jest.config.js +++ b/apps/token/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'token', preset: '../../jest.preset.js', diff --git a/apps/token/project.json b/apps/token/project.json index 733194ee9..c4c6a741e 100644 --- a/apps/token/project.json +++ b/apps/token/project.json @@ -62,7 +62,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/apps/token"], "options": { - "jestConfig": "apps/token/jest.config.js", + "jestConfig": "apps/token/jest.config.ts", "passWithNoTests": true } }, diff --git a/apps/token/tsconfig.app.json b/apps/token/tsconfig.app.json index 252904bb7..b2447df1e 100644 --- a/apps/token/tsconfig.app.json +++ b/apps/token/tsconfig.app.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/apps/token/tsconfig.spec.json b/apps/token/tsconfig.spec.json index 8c00a45c0..703c42d11 100644 --- a/apps/token/tsconfig.spec.json +++ b/apps/token/tsconfig.spec.json @@ -14,7 +14,8 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ], "files": [ "../../node_modules/@nrwl/react/typings/cssmodule.d.ts", diff --git a/apps/trading/jest.config.js b/apps/trading/jest.config.ts similarity index 94% rename from apps/trading/jest.config.js rename to apps/trading/jest.config.ts index 64e53be63..c21408448 100644 --- a/apps/trading/jest.config.js +++ b/apps/trading/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'trading', preset: '../../jest.preset.js', diff --git a/apps/trading/project.json b/apps/trading/project.json index b1900396e..4bd5bc7d8 100644 --- a/apps/trading/project.json +++ b/apps/trading/project.json @@ -41,7 +41,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/apps/trading"], "options": { - "jestConfig": "apps/trading/jest.config.js", + "jestConfig": "apps/trading/jest.config.ts", "passWithNoTests": true } }, diff --git a/apps/trading/tsconfig.json b/apps/trading/tsconfig.json index 7f7950c0a..3064d075f 100644 --- a/apps/trading/tsconfig.json +++ b/apps/trading/tsconfig.json @@ -13,5 +13,5 @@ "incremental": true }, "include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts"], - "exclude": ["node_modules"] + "exclude": ["node_modules", "jest.config.ts"] } diff --git a/jest.config.js b/jest.config.ts similarity index 100% rename from jest.config.js rename to jest.config.ts diff --git a/libs/accounts/jest.config.js b/libs/accounts/jest.config.ts similarity index 94% rename from libs/accounts/jest.config.js rename to libs/accounts/jest.config.ts index fd4b91f52..bfee72cf6 100644 --- a/libs/accounts/jest.config.js +++ b/libs/accounts/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'positions', preset: '../../jest.preset.js', diff --git a/libs/accounts/project.json b/libs/accounts/project.json index 2c3884dd5..c97ccc205 100644 --- a/libs/accounts/project.json +++ b/libs/accounts/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/accounts"], "options": { - "jestConfig": "libs/accounts/jest.config.js", + "jestConfig": "libs/accounts/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/accounts/tsconfig.lib.json b/libs/accounts/tsconfig.lib.json index de828a9a8..3ce050074 100644 --- a/libs/accounts/tsconfig.lib.json +++ b/libs/accounts/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/accounts/tsconfig.spec.json b/libs/accounts/tsconfig.spec.json index 0659641ca..f82d249ef 100644 --- a/libs/accounts/tsconfig.spec.json +++ b/libs/accounts/tsconfig.spec.json @@ -15,6 +15,7 @@ "**/*.test.jsx", "**/*.spec.jsx", "**/*.d.ts", - "../react-helpers/src/lib/grid-cells/summary-row.spec.ts" + "../react-helpers/src/lib/grid-cells/summary-row.spec.ts", + "jest.config.ts" ] } diff --git a/libs/candles-chart/jest.config.js b/libs/candles-chart/jest.config.ts similarity index 93% rename from libs/candles-chart/jest.config.js rename to libs/candles-chart/jest.config.ts index 4b3e11094..f442ca6b9 100644 --- a/libs/candles-chart/jest.config.js +++ b/libs/candles-chart/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'candles-chart', preset: '../../jest.preset.js', diff --git a/libs/candles-chart/project.json b/libs/candles-chart/project.json index 5f960be45..b8f78f06d 100644 --- a/libs/candles-chart/project.json +++ b/libs/candles-chart/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/candles-chart"], "options": { - "jestConfig": "libs/candles-chart/jest.config.js", + "jestConfig": "libs/candles-chart/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/candles-chart/tsconfig.lib.json b/libs/candles-chart/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/candles-chart/tsconfig.lib.json +++ b/libs/candles-chart/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/candles-chart/tsconfig.spec.json b/libs/candles-chart/tsconfig.spec.json index 67f149c4c..a85d573fc 100644 --- a/libs/candles-chart/tsconfig.spec.json +++ b/libs/candles-chart/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/cypress/jest.config.js b/libs/cypress/jest.config.ts similarity index 94% rename from libs/cypress/jest.config.js rename to libs/cypress/jest.config.ts index 10ab68a7e..5245dad9a 100644 --- a/libs/cypress/jest.config.js +++ b/libs/cypress/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'cypress', preset: '../../jest.preset.js', diff --git a/libs/cypress/project.json b/libs/cypress/project.json index 0c908a268..f93119c56 100644 --- a/libs/cypress/project.json +++ b/libs/cypress/project.json @@ -14,7 +14,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/cypress"], "options": { - "jestConfig": "libs/cypress/jest.config.js", + "jestConfig": "libs/cypress/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/cypress/tsconfig.lib.json b/libs/cypress/tsconfig.lib.json index 72605a7e7..45f1a3058 100644 --- a/libs/cypress/tsconfig.lib.json +++ b/libs/cypress/tsconfig.lib.json @@ -6,5 +6,5 @@ "types": ["cypress", "node"] }, "include": ["**/*.ts"], - "exclude": ["**/*.spec.ts"] + "exclude": ["**/*.spec.ts", "jest.config.ts"] } diff --git a/libs/cypress/tsconfig.spec.json b/libs/cypress/tsconfig.spec.json index 67f149c4c..a85d573fc 100644 --- a/libs/cypress/tsconfig.spec.json +++ b/libs/cypress/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/deal-ticket/jest.config.js b/libs/deal-ticket/jest.config.ts similarity index 93% rename from libs/deal-ticket/jest.config.js rename to libs/deal-ticket/jest.config.ts index 1c8743f71..a731d70a5 100644 --- a/libs/deal-ticket/jest.config.js +++ b/libs/deal-ticket/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'deal-ticket', preset: '../../jest.preset.js', diff --git a/libs/deal-ticket/project.json b/libs/deal-ticket/project.json index 5fa27ba22..52fb9137f 100644 --- a/libs/deal-ticket/project.json +++ b/libs/deal-ticket/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/deal-ticket"], "options": { - "jestConfig": "libs/deal-ticket/jest.config.js", + "jestConfig": "libs/deal-ticket/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/deal-ticket/tsconfig.lib.json b/libs/deal-ticket/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/deal-ticket/tsconfig.lib.json +++ b/libs/deal-ticket/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/deal-ticket/tsconfig.spec.json b/libs/deal-ticket/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/deal-ticket/tsconfig.spec.json +++ b/libs/deal-ticket/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/deposits/jest.config.js b/libs/deposits/jest.config.ts similarity index 93% rename from libs/deposits/jest.config.js rename to libs/deposits/jest.config.ts index 6c7ddd077..d0d2191a4 100644 --- a/libs/deposits/jest.config.js +++ b/libs/deposits/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'deposits', preset: '../../jest.preset.js', diff --git a/libs/deposits/project.json b/libs/deposits/project.json index bb6e547b7..e7cd58214 100644 --- a/libs/deposits/project.json +++ b/libs/deposits/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/deposits"], "options": { - "jestConfig": "libs/deposits/jest.config.js", + "jestConfig": "libs/deposits/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/deposits/tsconfig.lib.json b/libs/deposits/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/deposits/tsconfig.lib.json +++ b/libs/deposits/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/deposits/tsconfig.spec.json b/libs/deposits/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/deposits/tsconfig.spec.json +++ b/libs/deposits/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/environment/jest.config.js b/libs/environment/jest.config.ts similarity index 93% rename from libs/environment/jest.config.js rename to libs/environment/jest.config.ts index 37ed3392f..d5ab23a38 100644 --- a/libs/environment/jest.config.js +++ b/libs/environment/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'environment', preset: '../../jest.preset.js', diff --git a/libs/environment/project.json b/libs/environment/project.json index 045eb29c1..7afafdeed 100644 --- a/libs/environment/project.json +++ b/libs/environment/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/environment"], "options": { - "jestConfig": "libs/environment/jest.config.js", + "jestConfig": "libs/environment/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/environment/tsconfig.lib.json b/libs/environment/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/environment/tsconfig.lib.json +++ b/libs/environment/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/environment/tsconfig.spec.json b/libs/environment/tsconfig.spec.json index 987ab7cfc..a717b47cb 100644 --- a/libs/environment/tsconfig.spec.json +++ b/libs/environment/tsconfig.spec.json @@ -15,6 +15,7 @@ "**/*.test.jsx", "**/*.spec.jsx", "**/*.d.ts", - "**/__mocks__/*.tsx" + "**/__mocks__/*.tsx", + "jest.config.ts" ] } diff --git a/libs/fills/.storybook/tsconfig.json b/libs/fills/.storybook/tsconfig.json index 7a1170995..a33db6100 100644 --- a/libs/fills/.storybook/tsconfig.json +++ b/libs/fills/.storybook/tsconfig.json @@ -13,7 +13,8 @@ "../**/*.spec.ts", "../**/*.spec.js", "../**/*.spec.tsx", - "../**/*.spec.jsx" + "../**/*.spec.jsx", + "jest.config.ts" ], "include": ["../src/**/*", "*.js"] } diff --git a/libs/fills/jest.config.js b/libs/fills/jest.config.ts similarity index 94% rename from libs/fills/jest.config.js rename to libs/fills/jest.config.ts index 5daeb4ac3..b278f1319 100644 --- a/libs/fills/jest.config.js +++ b/libs/fills/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'fills', preset: '../../jest.preset.js', diff --git a/libs/fills/project.json b/libs/fills/project.json index 6091c9c32..c3160d23b 100644 --- a/libs/fills/project.json +++ b/libs/fills/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/fills"], "options": { - "jestConfig": "libs/fills/jest.config.js", + "jestConfig": "libs/fills/jest.config.ts", "passWithNoTests": true } }, diff --git a/libs/fills/tsconfig.lib.json b/libs/fills/tsconfig.lib.json index ad9c3d024..6a440c7bd 100644 --- a/libs/fills/tsconfig.lib.json +++ b/libs/fills/tsconfig.lib.json @@ -20,7 +20,8 @@ "**/*.stories.ts", "**/*.stories.js", "**/*.stories.jsx", - "**/*.stories.tsx" + "**/*.stories.tsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/fills/tsconfig.spec.json b/libs/fills/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/fills/tsconfig.spec.json +++ b/libs/fills/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/market-depth/.storybook/tsconfig.json b/libs/market-depth/.storybook/tsconfig.json index 7a1170995..a33db6100 100644 --- a/libs/market-depth/.storybook/tsconfig.json +++ b/libs/market-depth/.storybook/tsconfig.json @@ -13,7 +13,8 @@ "../**/*.spec.ts", "../**/*.spec.js", "../**/*.spec.tsx", - "../**/*.spec.jsx" + "../**/*.spec.jsx", + "jest.config.ts" ], "include": ["../src/**/*", "*.js"] } diff --git a/libs/market-depth/jest.config.js b/libs/market-depth/jest.config.ts similarity index 93% rename from libs/market-depth/jest.config.js rename to libs/market-depth/jest.config.ts index 8410e843d..6c74da925 100644 --- a/libs/market-depth/jest.config.js +++ b/libs/market-depth/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'market-depth', preset: '../../jest.preset.js', diff --git a/libs/market-depth/project.json b/libs/market-depth/project.json index 91f79404c..adb468ce6 100644 --- a/libs/market-depth/project.json +++ b/libs/market-depth/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/market-depth"], "options": { - "jestConfig": "libs/market-depth/jest.config.js", + "jestConfig": "libs/market-depth/jest.config.ts", "passWithNoTests": true } }, diff --git a/libs/market-depth/tsconfig.lib.json b/libs/market-depth/tsconfig.lib.json index ad9c3d024..6a440c7bd 100644 --- a/libs/market-depth/tsconfig.lib.json +++ b/libs/market-depth/tsconfig.lib.json @@ -20,7 +20,8 @@ "**/*.stories.ts", "**/*.stories.js", "**/*.stories.jsx", - "**/*.stories.tsx" + "**/*.stories.tsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/market-depth/tsconfig.spec.json b/libs/market-depth/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/market-depth/tsconfig.spec.json +++ b/libs/market-depth/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/market-list/jest.config.js b/libs/market-list/jest.config.ts similarity index 93% rename from libs/market-list/jest.config.js rename to libs/market-list/jest.config.ts index 58b7f31b6..8061bff97 100644 --- a/libs/market-list/jest.config.js +++ b/libs/market-list/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'market-list', preset: '../../jest.preset.js', diff --git a/libs/market-list/project.json b/libs/market-list/project.json index fb49c1a59..1e8233278 100644 --- a/libs/market-list/project.json +++ b/libs/market-list/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/market-list"], "options": { - "jestConfig": "libs/market-list/jest.config.js", + "jestConfig": "libs/market-list/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/market-list/tsconfig.lib.json b/libs/market-list/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/market-list/tsconfig.lib.json +++ b/libs/market-list/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/market-list/tsconfig.spec.json b/libs/market-list/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/market-list/tsconfig.spec.json +++ b/libs/market-list/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/network-info/jest.config.js b/libs/network-info/jest.config.ts similarity index 92% rename from libs/network-info/jest.config.js rename to libs/network-info/jest.config.ts index 9688b5a6c..eb244fab9 100644 --- a/libs/network-info/jest.config.js +++ b/libs/network-info/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'network-info', preset: '../../jest.preset.js', diff --git a/libs/network-info/project.json b/libs/network-info/project.json index ab28600a4..25304d9b1 100644 --- a/libs/network-info/project.json +++ b/libs/network-info/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/network-info"], "options": { - "jestConfig": "libs/network-info/jest.config.js", + "jestConfig": "libs/network-info/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/network-info/tsconfig.lib.json b/libs/network-info/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/network-info/tsconfig.lib.json +++ b/libs/network-info/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/network-info/tsconfig.spec.json b/libs/network-info/tsconfig.spec.json index 67f149c4c..a85d573fc 100644 --- a/libs/network-info/tsconfig.spec.json +++ b/libs/network-info/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/network-stats/jest.config.js b/libs/network-stats/jest.config.ts similarity index 92% rename from libs/network-stats/jest.config.js rename to libs/network-stats/jest.config.ts index eaa3fa569..369081cf6 100644 --- a/libs/network-stats/jest.config.js +++ b/libs/network-stats/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'network-stats', preset: '../../jest.preset.js', diff --git a/libs/network-stats/project.json b/libs/network-stats/project.json index 44d282733..17c322c43 100644 --- a/libs/network-stats/project.json +++ b/libs/network-stats/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/network-stats"], "options": { - "jestConfig": "libs/network-stats/jest.config.js", + "jestConfig": "libs/network-stats/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/network-stats/tsconfig.lib.json b/libs/network-stats/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/network-stats/tsconfig.lib.json +++ b/libs/network-stats/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/network-stats/tsconfig.spec.json b/libs/network-stats/tsconfig.spec.json index 67f149c4c..a85d573fc 100644 --- a/libs/network-stats/tsconfig.spec.json +++ b/libs/network-stats/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/orders/.storybook/tsconfig.json b/libs/orders/.storybook/tsconfig.json index 7a1170995..a33db6100 100644 --- a/libs/orders/.storybook/tsconfig.json +++ b/libs/orders/.storybook/tsconfig.json @@ -13,7 +13,8 @@ "../**/*.spec.ts", "../**/*.spec.js", "../**/*.spec.tsx", - "../**/*.spec.jsx" + "../**/*.spec.jsx", + "jest.config.ts" ], "include": ["../src/**/*", "*.js"] } diff --git a/libs/orders/jest.config.js b/libs/orders/jest.config.ts similarity index 93% rename from libs/orders/jest.config.js rename to libs/orders/jest.config.ts index 7d807008d..11ab368b7 100644 --- a/libs/orders/jest.config.js +++ b/libs/orders/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'orders', preset: '../../jest.preset.js', diff --git a/libs/orders/project.json b/libs/orders/project.json index a1f8b749c..232d39caf 100644 --- a/libs/orders/project.json +++ b/libs/orders/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/orders"], "options": { - "jestConfig": "libs/orders/jest.config.js", + "jestConfig": "libs/orders/jest.config.ts", "passWithNoTests": true } }, diff --git a/libs/orders/tsconfig.lib.json b/libs/orders/tsconfig.lib.json index ad9c3d024..6a440c7bd 100644 --- a/libs/orders/tsconfig.lib.json +++ b/libs/orders/tsconfig.lib.json @@ -20,7 +20,8 @@ "**/*.stories.ts", "**/*.stories.js", "**/*.stories.jsx", - "**/*.stories.tsx" + "**/*.stories.tsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/orders/tsconfig.spec.json b/libs/orders/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/orders/tsconfig.spec.json +++ b/libs/orders/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/positions/jest.config.js b/libs/positions/jest.config.ts similarity index 94% rename from libs/positions/jest.config.js rename to libs/positions/jest.config.ts index fd4b91f52..bfee72cf6 100644 --- a/libs/positions/jest.config.js +++ b/libs/positions/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'positions', preset: '../../jest.preset.js', diff --git a/libs/positions/project.json b/libs/positions/project.json index a9cf59d1d..7658b5001 100644 --- a/libs/positions/project.json +++ b/libs/positions/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/positions"], "options": { - "jestConfig": "libs/positions/jest.config.js", + "jestConfig": "libs/positions/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/positions/tsconfig.lib.json b/libs/positions/tsconfig.lib.json index de828a9a8..3ce050074 100644 --- a/libs/positions/tsconfig.lib.json +++ b/libs/positions/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/positions/tsconfig.spec.json b/libs/positions/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/positions/tsconfig.spec.json +++ b/libs/positions/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/react-helpers/jest.config.js b/libs/react-helpers/jest.config.ts similarity index 93% rename from libs/react-helpers/jest.config.js rename to libs/react-helpers/jest.config.ts index 50a87449a..518849012 100644 --- a/libs/react-helpers/jest.config.js +++ b/libs/react-helpers/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'react-helpers', preset: '../../jest.preset.js', diff --git a/libs/react-helpers/project.json b/libs/react-helpers/project.json index 041e8b218..4c69783a6 100644 --- a/libs/react-helpers/project.json +++ b/libs/react-helpers/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/react-helpers"], "options": { - "jestConfig": "libs/react-helpers/jest.config.js", + "jestConfig": "libs/react-helpers/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/react-helpers/tsconfig.lib.json b/libs/react-helpers/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/react-helpers/tsconfig.lib.json +++ b/libs/react-helpers/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/react-helpers/tsconfig.spec.json b/libs/react-helpers/tsconfig.spec.json index 67f149c4c..a85d573fc 100644 --- a/libs/react-helpers/tsconfig.spec.json +++ b/libs/react-helpers/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/smart-contracts/jest.config.js b/libs/smart-contracts/jest.config.ts similarity index 92% rename from libs/smart-contracts/jest.config.js rename to libs/smart-contracts/jest.config.ts index c38da686d..2c87bd9cc 100644 --- a/libs/smart-contracts/jest.config.js +++ b/libs/smart-contracts/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'smart-contracts', preset: '../../jest.preset.js', diff --git a/libs/smart-contracts/project.json b/libs/smart-contracts/project.json index 9f641fbb5..9ef0555f2 100644 --- a/libs/smart-contracts/project.json +++ b/libs/smart-contracts/project.json @@ -23,7 +23,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/smart-contracts"], "options": { - "jestConfig": "libs/smart-contracts/jest.config.js", + "jestConfig": "libs/smart-contracts/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/smart-contracts/tsconfig.lib.json b/libs/smart-contracts/tsconfig.lib.json index 18b626731..4861bdbfe 100644 --- a/libs/smart-contracts/tsconfig.lib.json +++ b/libs/smart-contracts/tsconfig.lib.json @@ -6,5 +6,5 @@ "types": [] }, "include": ["**/*.ts"], - "exclude": ["**/*.spec.ts", "**/*.test.ts"] + "exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"] } diff --git a/libs/smart-contracts/tsconfig.spec.json b/libs/smart-contracts/tsconfig.spec.json index a18afb604..f95b08f8f 100644 --- a/libs/smart-contracts/tsconfig.spec.json +++ b/libs/smart-contracts/tsconfig.spec.json @@ -5,5 +5,5 @@ "module": "commonjs", "types": ["jest", "node"] }, - "include": ["**/*.test.ts", "**/*.spec.ts", "**/*.d.ts"] + "include": ["**/*.test.ts", "**/*.spec.ts", "**/*.d.ts", "jest.config.ts"] } diff --git a/libs/tailwindcss-config/jest.config.js b/libs/tailwindcss-config/jest.config.ts similarity index 94% rename from libs/tailwindcss-config/jest.config.js rename to libs/tailwindcss-config/jest.config.ts index 7ca6dcddc..9ed93ba6c 100644 --- a/libs/tailwindcss-config/jest.config.js +++ b/libs/tailwindcss-config/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'tailwindcss-config', preset: '../../jest.preset.js', diff --git a/libs/tailwindcss-config/project.json b/libs/tailwindcss-config/project.json index 37274f0a8..911657125 100644 --- a/libs/tailwindcss-config/project.json +++ b/libs/tailwindcss-config/project.json @@ -24,7 +24,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/tailwindcss-config"], "options": { - "jestConfig": "libs/tailwindcss-config/jest.config.js", + "jestConfig": "libs/tailwindcss-config/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/tailwindcss-config/tsconfig.lib.json b/libs/tailwindcss-config/tsconfig.lib.json index 9607e66b1..d00a804e9 100644 --- a/libs/tailwindcss-config/tsconfig.lib.json +++ b/libs/tailwindcss-config/tsconfig.lib.json @@ -6,5 +6,5 @@ "types": [] }, "include": ["**/*.ts", "**/*.js"], - "exclude": ["**/*.spec.ts", "**/*.spec.js"] + "exclude": ["**/*.spec.ts", "**/*.spec.js", "jest.config.ts"] } diff --git a/libs/tailwindcss-config/tsconfig.spec.json b/libs/tailwindcss-config/tsconfig.spec.json index a18afb604..f95b08f8f 100644 --- a/libs/tailwindcss-config/tsconfig.spec.json +++ b/libs/tailwindcss-config/tsconfig.spec.json @@ -5,5 +5,5 @@ "module": "commonjs", "types": ["jest", "node"] }, - "include": ["**/*.test.ts", "**/*.spec.ts", "**/*.d.ts"] + "include": ["**/*.test.ts", "**/*.spec.ts", "**/*.d.ts", "jest.config.ts"] } diff --git a/libs/trades/jest.config.js b/libs/trades/jest.config.ts similarity index 93% rename from libs/trades/jest.config.js rename to libs/trades/jest.config.ts index 7197c3c24..d70645ba1 100644 --- a/libs/trades/jest.config.js +++ b/libs/trades/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'trades', preset: '../../jest.preset.js', diff --git a/libs/trades/project.json b/libs/trades/project.json index 48745e083..4e665116b 100644 --- a/libs/trades/project.json +++ b/libs/trades/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/trades"], "options": { - "jestConfig": "libs/trades/jest.config.js", + "jestConfig": "libs/trades/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/trades/tsconfig.lib.json b/libs/trades/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/trades/tsconfig.lib.json +++ b/libs/trades/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/trades/tsconfig.spec.json b/libs/trades/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/trades/tsconfig.spec.json +++ b/libs/trades/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/types/jest.config.js b/libs/types/jest.config.ts similarity index 91% rename from libs/types/jest.config.js rename to libs/types/jest.config.ts index 1ce0ebb45..a5ad2f505 100644 --- a/libs/types/jest.config.js +++ b/libs/types/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'types', preset: '../../jest.preset.js', diff --git a/libs/types/project.json b/libs/types/project.json index 3ced188d4..6e495201a 100644 --- a/libs/types/project.json +++ b/libs/types/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/types"], "options": { - "jestConfig": "libs/types/jest.config.js", + "jestConfig": "libs/types/jest.config.ts", "passWithNoTests": true } }, diff --git a/libs/types/tsconfig.lib.json b/libs/types/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/types/tsconfig.lib.json +++ b/libs/types/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/types/tsconfig.spec.json b/libs/types/tsconfig.spec.json index 67f149c4c..a85d573fc 100644 --- a/libs/types/tsconfig.spec.json +++ b/libs/types/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/ui-toolkit/.storybook/tsconfig.json b/libs/ui-toolkit/.storybook/tsconfig.json index 7a1170995..a33db6100 100644 --- a/libs/ui-toolkit/.storybook/tsconfig.json +++ b/libs/ui-toolkit/.storybook/tsconfig.json @@ -13,7 +13,8 @@ "../**/*.spec.ts", "../**/*.spec.js", "../**/*.spec.tsx", - "../**/*.spec.jsx" + "../**/*.spec.jsx", + "jest.config.ts" ], "include": ["../src/**/*", "*.js"] } diff --git a/libs/ui-toolkit/jest.config.js b/libs/ui-toolkit/jest.config.ts similarity index 93% rename from libs/ui-toolkit/jest.config.js rename to libs/ui-toolkit/jest.config.ts index 57204627e..e0c3797a6 100644 --- a/libs/ui-toolkit/jest.config.js +++ b/libs/ui-toolkit/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'ui-toolkit', preset: '../../jest.preset.js', diff --git a/libs/ui-toolkit/project.json b/libs/ui-toolkit/project.json index fa0d47bd8..e1771990d 100644 --- a/libs/ui-toolkit/project.json +++ b/libs/ui-toolkit/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/ui-toolkit"], "options": { - "jestConfig": "libs/ui-toolkit/jest.config.js", + "jestConfig": "libs/ui-toolkit/jest.config.ts", "passWithNoTests": true } }, diff --git a/libs/ui-toolkit/tsconfig.lib.json b/libs/ui-toolkit/tsconfig.lib.json index 7c6fb6975..71e359930 100644 --- a/libs/ui-toolkit/tsconfig.lib.json +++ b/libs/ui-toolkit/tsconfig.lib.json @@ -20,7 +20,8 @@ "**/*.stories.ts", "**/*.stories.js", "**/*.stories.jsx", - "**/*.stories.tsx" + "**/*.stories.tsx", + "jest.config.ts" ], "include": [ "**/*.js", diff --git a/libs/ui-toolkit/tsconfig.spec.json b/libs/ui-toolkit/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/ui-toolkit/tsconfig.spec.json +++ b/libs/ui-toolkit/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/wallet/jest.config.js b/libs/wallet/jest.config.ts similarity index 93% rename from libs/wallet/jest.config.js rename to libs/wallet/jest.config.ts index 5d9cffd3c..669095c1d 100644 --- a/libs/wallet/jest.config.js +++ b/libs/wallet/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'wallet', preset: '../../jest.preset.js', diff --git a/libs/wallet/project.json b/libs/wallet/project.json index bbef1d080..4867cb54a 100644 --- a/libs/wallet/project.json +++ b/libs/wallet/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/wallet"], "options": { - "jestConfig": "libs/wallet/jest.config.js", + "jestConfig": "libs/wallet/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/wallet/tsconfig.lib.json b/libs/wallet/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/wallet/tsconfig.lib.json +++ b/libs/wallet/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/wallet/tsconfig.spec.json b/libs/wallet/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/wallet/tsconfig.spec.json +++ b/libs/wallet/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/web3/jest.config.js b/libs/web3/jest.config.ts similarity index 93% rename from libs/web3/jest.config.js rename to libs/web3/jest.config.ts index bd0f5f9e5..2665c8808 100644 --- a/libs/web3/jest.config.js +++ b/libs/web3/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'web3', preset: '../../jest.preset.js', diff --git a/libs/web3/project.json b/libs/web3/project.json index c3f43a093..5058d131d 100644 --- a/libs/web3/project.json +++ b/libs/web3/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/web3"], "options": { - "jestConfig": "libs/web3/jest.config.js", + "jestConfig": "libs/web3/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/web3/tsconfig.lib.json b/libs/web3/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/web3/tsconfig.lib.json +++ b/libs/web3/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/web3/tsconfig.spec.json b/libs/web3/tsconfig.spec.json index 86a9fa994..3da863401 100644 --- a/libs/web3/tsconfig.spec.json +++ b/libs/web3/tsconfig.spec.json @@ -14,6 +14,7 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts" + "**/*.d.ts", + "jest.config.ts" ] } diff --git a/libs/withdraws/jest.config.js b/libs/withdraws/jest.config.ts similarity index 94% rename from libs/withdraws/jest.config.js rename to libs/withdraws/jest.config.ts index 42b0afa6c..8d8c4238a 100644 --- a/libs/withdraws/jest.config.js +++ b/libs/withdraws/jest.config.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ module.exports = { displayName: 'withdraws', preset: '../../jest.preset.js', diff --git a/libs/withdraws/project.json b/libs/withdraws/project.json index 9e9aff403..299eef1b7 100644 --- a/libs/withdraws/project.json +++ b/libs/withdraws/project.json @@ -35,7 +35,7 @@ "executor": "@nrwl/jest:jest", "outputs": ["coverage/libs/withdraws"], "options": { - "jestConfig": "libs/withdraws/jest.config.js", + "jestConfig": "libs/withdraws/jest.config.ts", "passWithNoTests": true } } diff --git a/libs/withdraws/tsconfig.lib.json b/libs/withdraws/tsconfig.lib.json index 252904bb7..b2447df1e 100644 --- a/libs/withdraws/tsconfig.lib.json +++ b/libs/withdraws/tsconfig.lib.json @@ -16,7 +16,8 @@ "**/*.spec.js", "**/*.test.js", "**/*.spec.jsx", - "**/*.test.jsx" + "**/*.test.jsx", + "jest.config.ts" ], "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] } diff --git a/libs/withdraws/tsconfig.spec.json b/libs/withdraws/tsconfig.spec.json index 4b4da8931..526986384 100644 --- a/libs/withdraws/tsconfig.spec.json +++ b/libs/withdraws/tsconfig.spec.json @@ -15,6 +15,7 @@ "**/*.test.jsx", "**/*.spec.jsx", "**/*.d.ts", - "src/lib/withdraw-manager.foo.tsx" + "src/lib/withdraw-manager.foo.tsx", + "jest.config.ts" ] }