forked from algolia/instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.v3.json
21 lines (21 loc) · 1003 Bytes
/
tsconfig.v3.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"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"
]
}