* Remove redux-offline and configure redux-persist * Fix typo * Fix configure store * Upgrade to redux-persist 6.0.0 * Add migration from redux-persist v4 to v6 * Replace AsyncStorage with MMKVStorage to boost storage speed * Mock RNFastStorage * Fix reactions test * Fix clearing the store on logout * Remove the need for LOGOUT_SUCCESS * No need to pass persistConfig to middlewares() * Remove unused imports * Export connection Accidentally removed this export. * Add batch action name Co-Authored-By: Elias Nahum <nahumhbl@gmail.com> * Add batch action name Co-Authored-By: Elias Nahum <nahumhbl@gmail.com> * Add batch action name Co-Authored-By: Elias Nahum <nahumhbl@gmail.com> * Add batch action name Co-Authored-By: Elias Nahum <nahumhbl@gmail.com> * Fix delete post * Fix leave channel Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
53 lines
No EOL
1.5 KiB
JSON
53 lines
No EOL
1.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"noEmit": false,
|
|
"strict": false,
|
|
"importHelpers": 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,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@actions/*": ["app/actions/*"],
|
|
"@constants/*": ["app/constants/*"],
|
|
"@constants": ["app/constants/index"],
|
|
"@i18n": ["app/i18n/index"],
|
|
"@selectors/*": ["app/selectors/*"],
|
|
"@telemetry/*": ["/app/telemetry/*"],
|
|
"@utils/*": ["app/utils/*"],
|
|
"@mm-redux/*": ["app/mm-redux/*"],
|
|
"@websocket": ["app/client/websocket"],
|
|
"*": ["./*", "node_modules/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js",
|
|
]
|
|
} |