Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21 lines (21 sloc)
1003 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "./tsconfig", | |
"exclude": [ | |
"examples", | |
"es", | |
// this test has specific code for v3 and v4, so already checked in the v4 test | |
"src/middlewares/__tests__/createMetadataMiddleware.ts", | |
// these two files are temporarily excluded because | |
// they import files from node_modules/search-insights directly | |
// and it causes the type-checking to fail. | |
"src/middlewares/__tests__/createInsightsMiddleware.ts", | |
"test/mock/createInsightsClient.ts", | |
// v3 has a wrong definition for optionalWords (only accepts string[]) | |
"src/connectors/voice-search/__tests__/connectVoiceSearch-test.ts", | |
// v3 does not have renderingContent (only errors in the test) | |
"src/connectors/dynamic-widgets/__tests__/connectDynamicWidgets-test.ts", | |
"src/connectors/hierarchical-menu/__tests__/connectHierarchicalMenu-test.ts", | |
"src/connectors/menu/__tests__/connectMenu-test.ts", | |
"src/connectors/refinement-list/__tests__/connectRefinementList-test.ts" | |
] | |
} |