-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.27 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"baseUrl": "./",
"module": "es2015",
"target": "esnext",
"typeRoots": [
"./node_modules/@types"
],
"types": [
"react-native",
"react-native-device-info"
],
"paths": {
"react-native": [
"./node_modules/@types/react-native"
],
"react-native-device-info": [
"./node_modules/react-native-device-info/lib/typescript"
]
},
"lib": [
"es2017"
],
"noEmitOnError": true,
"sourceMap": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"removeComments": false,
"allowJs": true,
"checkJs": true,
"declaration": false,
"noLib": false,
"watch": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"strict": true,
"strictFunctionTypes": false,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"moduleResolution": "node",
"outDir": "./styles/native/js",
"newLine": "CRLF"
},
"include": [
"./styles/native/**/*.ts"
]
}