forked from enigosi/react-native-sim-cards-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 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
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"react-native-sim-cards-manager": ["./index"]
},
"declarationDir": "./types",
"declaration": true,
"esModuleInterop": true,
"jsx": "react-native",
"lib": ["ESNext"],
"module": "CommonJS",
"noEmitOnError": true,
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
"outDir": "",
"sourceMap": true,
"strict": true,
"target": "ESNext",
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"skipLibCheck": true,
"typeRoots": ["./node_modules/@types"] /* List of folders to include type definitions from. */
},
"include": [
"example/**/*",
"declarations.d.ts",
"libs.d.ts",
"react-native.config.js",
"index.ts"
],
"exclude": ["node_modules", "**/__tests__/*", "coverage", "babel.config.js"]
}