-
Notifications
You must be signed in to change notification settings - Fork 16
/
tsconfig.json
35 lines (35 loc) · 1.02 KB
/
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
33
34
35
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@react-native-ama/animations": ["packages/animations/src/index"],
"@react-native-ama/core": ["packages/core/src/index"],
"@react-native-ama/extras": ["packages/extras/src/index"],
"@react-native-ama/forms": ["packages/forms/src/index"],
"@react-native-ama/internal": ["packages/internal/src/index"],
"@react-native-ama/lists": ["packages/lists/src/index"],
"@react-native-ama/react-native": ["packages/react-native/src/index"]
},
"jsx": "react",
"lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"target": "esnext",
"esModuleInterop": true,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"strict": true,
"noImplicitAny": false,
"noUnusedParameters": true,
"skipLibCheck": true
},
"exclude": [
"website",
"**/**/dist",
"**/**/node_modules",
"node_modules",
"**/__mocks__",
"**/__tests__"
]
}