-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtsconfig.json
38 lines (38 loc) · 961 Bytes
/
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "React Native",
"_version": "3.0.2",
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"types": ["node"],
"typeRoots": [ "./node_modules/@types", "./src/@types"],
"allowJs": true,
"declaration": true,
"jsx": "react-native",
"outDir": "./dist",
"rootDir": "./src",
"isolatedModules": true,
"strict": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": false,
"esModuleInterop": true,
"skipLibCheck": true,
"noImplicitAny": false,
},
"include": [
"src/index.ts",
"src/index.web.js",
"src/ui"
],
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js",
"example",
"dist"
]
}