-
Notifications
You must be signed in to change notification settings - Fork 752
Expand file tree
/
Copy pathtsconfig.json
More file actions
40 lines (40 loc) · 1.28 KB
/
tsconfig.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
// "outDir": "dist",
"esModuleInterop": true,
"moduleResolution": "node",
"jsx": "react-native",
"skipLibCheck": true,
// "resolveJsonModule": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
// "noEmit": true,
// "checkJs": true,
"allowJs": false,
"emitDeclarationOnly": true,
// "noImplicitAny": false
"declaration": true,
// "declarationDir": "./generatedTypes",
"baseUrl": ".",
"paths": {
"commons": ["packages/react-native-ui-lib/src/commons"],
"helpers": ["packages/react-native-ui-lib/src/helpers"],
"utils": ["packages/react-native-ui-lib/src/utils"],
"hooks": ["packages/react-native-ui-lib/src/hooks"],
"optionalDeps": ["packages/react-native-ui-lib/src/optionalDependencies"],
"services": ["packages/react-native-ui-lib/src/services"],
"style": ["packages/react-native-ui-lib/src/style"]
}
},
"include": [
"packages/react-native-ui-lib/src/**/*",
"packages/react-native-ui-lib/lib/**/*",
"typings/**/*",
"packages/unicorn-demo-app/**/*",
"packages/uilib-native/components/**/*"
],
"exclude": ["node_modules", "packages/react-native-ui-lib/src/**/__tests__"]
}