chore: upgrade Nx to v18.1.3 (#4706)

Split from https://github.com/twentyhq/twenty/pull/4518

- Upgrades dependencies and applies automatic config migrations with the
command: `npx nx migrate nx` (see
https://nx.dev/nx-api/nx/documents/migrate)
- Fixes lint errors after upgrading `@typescript-eslint`

Note: it was not possible (for now) to migrate Nx to the latest stable
version (v18.2.1) because it upgrades Typescript to v5.4.3, which seems
to cause a bug on install when Yarn tries to apply its native patches.
Might be a bug on the Yarn side.
This commit is contained in:
Thaïs
2024-04-01 13:16:50 +02:00
committed by GitHub
parent 5d07b6347e
commit a3e5cf37b0
16 changed files with 592 additions and 678 deletions

View File

@ -74,6 +74,7 @@ module.exports = {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
@ -87,6 +88,10 @@ module.exports = {
'error',
{ prefer: 'no-type-imports' },
],
'@typescript-eslint/no-empty-interface': [
'error',
{ allowSingleExtends: true },
],
},
},
{
@ -99,7 +104,15 @@ module.exports = {
env: {
jest: true,
},
rules: {},
rules: {
'@typescript-eslint/no-non-null-assertion': 'off',
},
},
{
files: ['*.stories.@(ts|tsx|js|jsx)'],
rules: {
'@typescript-eslint/no-non-null-assertion': 'off',
},
},
{
files: ['**/constants/*.ts', '**/*.constants.ts'],