2020-11-17 23:42:36 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"lib": ["es6"],
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noEmit": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "esnext",
|
|
|
|
"resolveJsonModule": true, // Required for JSON files
|
|
|
|
"skipLibCheck": true, // Skips *.d.ts files
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"noImplicitAny": false,
|
2020-11-30 06:37:49 +00:00
|
|
|
"outDir": "./lib",
|
2020-11-17 23:42:36 +00:00
|
|
|
"baseUrl": "app",
|
|
|
|
"paths": {
|
2020-11-30 06:37:49 +00:00
|
|
|
"*": ["*", "*.ios", "*.android"]
|
2020-11-17 23:42:36 +00:00
|
|
|
}
|
|
|
|
},
|
2020-11-30 06:37:49 +00:00
|
|
|
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js", "**/*.json", "**/*.spec.ts"]
|
2020-11-17 23:42:36 +00:00
|
|
|
}
|