* Remove mattermost-redux * Move mm-redux files into app/redux * Add @redux path to tsconfig.json * Fix imports * Install missing dependencies * Fix tsc errors * Fix i18n_utils test * Fix more imports * Remove redux websocket * Fix tests * Rename @redux * Apply changes from mattermost-redux PR 1103 * Remove mattermost-redux mention in template * Add missing imports * Rename app/redux/ to app/mm-redux/ * Remove test file * Fix fetching Sidebar GM profiles Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
52 lines
No EOL
1.5 KiB
JSON
52 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"],
|
|
"@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",
|
|
]
|
|
} |