{ "compilerOptions": { "experimentalDecorators": true, "target": "esnext", "lib": [ "es6", "ES2019" ], "allowJs": false, "skipLibCheck": true, "allowSyntheticDefaultImports": true, "allowUnreachableCode": false, "allowUnusedLabels": false, "esModuleInterop": true, "isolatedModules": true, "jsx": "react-native", "types": ["react-native", "node", "jest"], "moduleResolution": "node", "noEmit": false, "strict": true, "importHelpers": true, "importsNotUsedAsValues": "error", "forceConsistentCasingInFileNames": true, "declaration": true, "sourceMap": false, "rootDir": "./", "outDir": "./", "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": false, "strictPropertyInitialization": true, "noImplicitThis": false, "alwaysStrict": true, "noUnusedLocals": false, "downlevelIteration": true, "noUnusedParameters": false, "noImplicitReturns": true, "noImplicitUseStrict": false, "noFallthroughCasesInSwitch": true, "resolveJsonModule": true, "baseUrl": ".", "paths": { "@actions/*": ["app/actions/*"], "@app/*": ["app/*"], "@assets/*": ["dist/assets/*"], "@calls/*": ["app/products/calls/*"], "@client/*": ["app/client/*"], "@components/*": ["app/components/*"], "@constants": ["app/constants/index"], "@constants/*": ["app/constants/*"], "@context/*": ["app/context/*"], "@database/*": ["app/database/*"], "@helpers/*": ["app/helpers/*"], "@hooks/*": ["app/hooks/*"], "@i18n": ["app/i18n/index"], "@init/*": ["app/init/*"], "@managers/*": ["app/managers/*"], "@notifications": ["app/notifications/index"], "@queries/*": ["app/queries/*"], "@screens/*": ["app/screens/*"], "@selectors/*": ["app/selectors/*"], "@share/*": ["share_extension/*"], "@store": ["app/store/index"], "@store/*": ["app/store/*"], "@telemetry/*": ["/app/telemetry/*"], "@typings/*": ["types/*"], "@test/*": ["test/*"], "@utils/*": ["app/utils/*"], "@websocket": ["app/client/websocket"], "*": ["./*", "node_modules/*"], } }, "include": ["app/**/*", "share_extension/**/*", "test/**/*", "types/**/*"], "exclude": [ "node_modules", "build", "babel.config.js", "metro.config.js", "jest.config.js", "detox/**/*", ], }