-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
tsconfig.json
32 lines (32 loc) · 859 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"esModuleInterop": true,
"importHelpers": true,
"jsx": "react",
"lib": ["esnext", "dom"],
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"resolveJsonModule": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"stripInternal": true,
"target": "ES2015",
"allowJs": false,
"types": ["jest"]
},
"exclude": ["packages/cypress-plugin"],
"typeRoots": ["@types", "node_modules/@types"]
}