forked from algolia/react-instantsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 690 Bytes
/
tsconfig.json
File metadata and controls
21 lines (21 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"target": "ESNEXT",
"module": "es2015",
"moduleResolution": "node",
"jsx": "preserve",
"noEmit": true,
"strict": true,
// @TODO: It's mandatory to disable this strict check at the moment
// otherwise we have to type every import we do. The migration is an
// incremental process so it happens that we import JavaScript module
// from TypeScript one. The compiler always translates those imports
// as impliciy any.
"noImplicitAny": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true
}
}