mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 03:23:51 -05:00
React Compiler (#5562)
* Highlight first suggestion when searching instead of the split option * Fix error * Try out react compiler * Fix typecheck errors * Increase --max-old-space-size * Increate --max-old-space-size in package-browser * Update config and versions * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) * Update versions * Fix typecheck errors * Revert some changes * Implement react compiler to take advantage of some performance improvements * Fixes * Remove unused packages --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
0ca5bec094
commit
8ae070ab12
@@ -154,9 +154,6 @@ export default pluginTypescript.config(
|
||||
{
|
||||
plugins: {
|
||||
actual: pluginActual,
|
||||
'react-hooks': pluginReactHooks,
|
||||
'jsx-a11y': pluginJSXA11y,
|
||||
'typescript-paths': pluginTypescriptPaths,
|
||||
},
|
||||
rules: {
|
||||
'actual/no-untranslated-strings': 'error',
|
||||
@@ -165,6 +162,10 @@ export default pluginTypescript.config(
|
||||
},
|
||||
{
|
||||
files: ['**/*.{js,ts,jsx,tsx}'],
|
||||
plugins: {
|
||||
'jsx-a11y': pluginJSXA11y,
|
||||
'react-hooks': pluginReactHooks,
|
||||
},
|
||||
rules: {
|
||||
// http://eslint.org/docs/rules/
|
||||
'array-callback-return': 'warn',
|
||||
@@ -630,6 +631,9 @@ export default pluginTypescript.config(
|
||||
},
|
||||
{
|
||||
files: ['packages/desktop-client/**/*.{js,ts,jsx,tsx}'],
|
||||
plugins: {
|
||||
'typescript-paths': pluginTypescriptPaths,
|
||||
},
|
||||
rules: {
|
||||
'typescript-paths/absolute-parent-import': [
|
||||
'error',
|
||||
|
||||
Reference in New Issue
Block a user