-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 783 Bytes
/
Copy pathtsconfig.json
File metadata and controls
28 lines (28 loc) · 783 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
{
"compilerOptions": {
"lib": ["dom", "DOM.Iterable", "esnext"],
"types": [],
"typeRoots": ["./ts-declarations", "./node_modules/@types"],
"jsx": "react-native",
"target": "esnext",
"moduleResolution": "bundler",
"module": "esnext",
"moduleDetection": "force",
"esModuleInterop": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"skipLibCheck": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": false,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"rootDir": "./src",
"outDir": "./build"
},
"include": ["./src"],
"exclude": ["**/__mocks__/*", "**/__tests__/*"]
}