forked from marcocrupi/react-native-notify-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 1.04 KB
/
tsconfig.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"include": [
"packages/react-native/src/**/*.ts"
],
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"target": "es6",
"isolatedModules": true,
"module": "esnext",
"declaration": true,
"importHelpers": true,
"jsx": "react",
"sourceMap": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"preserveConstEnums": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "bundler",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"lib": ["es6"],
"paths": {
"react-native": ["./apps/smoke/node_modules/react-native"],
"react-native/*": ["./apps/smoke/node_modules/react-native/*"]
},
"typeRoots": [
"./apps/smoke/node_modules/@types",
"./node_modules/@types"
]
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"packages/react-native/jest.config.js",
"packages/react-native/src/__mocks__"
]
}