forked from rajputav/react-native-phone-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 988 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
39
40
41
42
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": ["es6"],
"baseUrl": ".",
"rootDir": "./src/",
"typeRoots": ["./node_modules/@types", "types"],
"declaration": true,
"removeComments": false,
"noLib": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
"inlineSources": true,
"jsx": "react",
"paths": {},
"pretty": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strict": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"outDir": "dist",
},
"files": [
"src/typings/index.d.ts",
"tests/test.d.ts"
],
"include": [
"src/**/*"
],
"exclude": [
"node_modules/**/*.*"
],
"compileOnSave": false
}