forked from akveo/react-native-ui-kitten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.prod.json
More file actions
38 lines (38 loc) · 725 Bytes
/
tsconfig.prod.json
File metadata and controls
38 lines (38 loc) · 725 Bytes
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
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/tsc-out",
"declaration": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"moduleResolution": "node",
"jsx": "react-native",
"target": "es2015",
"module": "esnext",
"lib": [
"es2018"
],
"typeRoots": [
"./node_modules/@types"
],
"paths": {
"@kitten/ui": [
"./src/framework/ui"
],
"@kitten/theme": [
"./src/framework/theme"
]
}
},
"include": [
"./src",
"./src/**/package.json"
],
"exclude": [
"./**/*.spec.ts",
"./**/*.spec.tsx",
"./**/*.snap"
]
}