forked from Nubescope/react-native-navigation-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 865 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
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"diagnostics": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"pretty": true,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"target": "es5",
"types": ["react", "react-native", "react-native-navigation", "jest"]
},
"include": ["src"],
"exclude": ["node_modules", "tests", "**/__tests__/**/*", "**/__stories__/**/*", "*.test.ts", "*.test.tsx"]
}