From 4cf218c8d82b09f40c5e3cac8e6a9a773c096c4d Mon Sep 17 00:00:00 2001 From: Carlo Corradini Date: Thu, 31 Dec 2020 20:44:13 +0100 Subject: [PATCH] jest.config.ts configuration file in Typescript (#2657) * jest.config.ts configuration file in Typescript **Jest** now supports *jest.config.ts* as configuration file. See [https://github.com/facebook/jest/issues/9636](https://github.com/facebook/jest/issues/9636) for more information. * apply only to jest.config.ts Co-authored-by: Roberto Huertas --- src/iconsManifest/supportedExtensions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/iconsManifest/supportedExtensions.ts b/src/iconsManifest/supportedExtensions.ts index ec3ee90fc1..e9b8795a1e 100644 --- a/src/iconsManifest/supportedExtensions.ts +++ b/src/iconsManifest/supportedExtensions.ts @@ -1964,6 +1964,7 @@ export const extensions: IFileCollection = { icon: 'jest', extensions: [ 'jest.config.json', + 'jest.config.ts', 'jest.json', '.jestrc', '.jestrc.js',