forked from jaredpalmer/formik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
43 lines (43 loc) · 1.03 KB
/
tsconfig.base.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
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationDir": "dist",
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"importHelpers": true,
"jsx": "react",
"lib": ["es2015", "dom"],
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "compiled",
"pretty": true,
"removeComments": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"stripInternal": true,
"target": "es5",
"types": [
"react",
"react-native",
"jest",
"prop-types",
"enzyme",
"enzyme-adapter-react-16",
"lodash.clonedeep",
"lodash.isequal",
"lodash.topath",
"warning",
"react-test-renderer"
]
},
"include": ["src", "./typings.d.ts"],
"exclude": ["node_modules", "dist"]
}