forked from algolia/instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.v3.json
23 lines (23 loc) · 1.23 KB
/
tsconfig.v3.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"extends": "./tsconfig",
"exclude": [
"examples",
"es",
// this test has specific code for v3 and v4, so already checked in the v4 test
"packages/instantsearch.js/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.
"packages/instantsearch.js/src/middlewares/__tests__/createInsightsMiddleware.ts",
"test/mock/createInsightsClient.ts",
// v3 has a wrong definition for optionalWords (only accepts string[])
"packages/instantsearch.js/src/connectors/voice-search/__tests__/connectVoiceSearch-test.ts",
// v3 does not have renderingContent (only errors in the test)
"packages/instantsearch.js/src/connectors/dynamic-widgets/__tests__/connectDynamicWidgets-test.ts",
"packages/instantsearch.js/src/connectors/hierarchical-menu/__tests__/connectHierarchicalMenu-test.ts",
"packages/instantsearch.js/src/connectors/menu/__tests__/connectMenu-test.ts",
"packages/instantsearch.js/src/connectors/refinement-list/__tests__/connectRefinementList-test.ts",
"tests/e2e",
"packages/create-instantsearch-app/src/templates/**/*"
]
}