-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
tsconfig.json
35 lines (35 loc) · 1.03 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
{
"include": ["src/**/*"],
"exclude": ["Example", "ExampleExpo", "scripts", "docs"],
"compilerOptions": {
"types": ["react-native", "react-native-reanimated", "react-native-gesture-handler"],
"baseUrl": ".",
"paths": {
"@sliders/*": ["src/components/Sliders/*"],
"@panels/*": ["src/components/Panels/*"],
"@assets/*": ["src/assets/*"],
"@thumb": ["src/components/Thumb/Thumb"],
"@colorKit": ["src/colorKit/index"],
"@context": ["src/AppContext"],
"@styles": ["src/styles"],
"@utils": ["src/utils"],
"@types": ["src/types"]
},
"noEmit": false,
"composite": true,
"declaration": true,
"module": "ESNext",
"target": "es6",
"moduleResolution": "node",
"lib": ["ES2017"],
"esModuleInterop": true,
"alwaysStrict": true,
"strict": true,
"jsx": "react-native",
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"preserveSymlinks": true,
"skipLibCheck": true
}
}