2020-11-17 23:42:36 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-06-08 22:46:06 +00:00
|
|
|
"declaration": true,
|
|
|
|
"declarationDir": "./dist/",
|
2020-11-17 23:42:36 +00:00
|
|
|
"esModuleInterop": true,
|
2021-06-08 22:46:06 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"jsx": "react-native",
|
|
|
|
"lib": ["ES6"],
|
|
|
|
"module": "ES6",
|
2020-11-17 23:42:36 +00:00
|
|
|
"moduleResolution": "node",
|
2021-06-08 22:46:06 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"target": "ES6",
|
|
|
|
"skipLibCheck": true
|
2020-11-17 23:42:36 +00:00
|
|
|
},
|
2021-06-08 22:46:06 +00:00
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx"],
|
|
|
|
"exclude": ["**/__tests__/*", "*.test.tsx"]
|
2020-11-17 23:42:36 +00:00
|
|
|
}
|