You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Interface 'AssertEntry' cannot simultaneously extend types 'ImportAttribute' and 'Node'.
Named property 'kind' of types 'ImportAttribute' and 'Node' are not identical.
Interface 'AssertEntry' cannot simultaneously extend types 'ImportAttribute' and 'Node'.
Named property 'parent' of types 'ImportAttribute' and 'Node' are not identical.
Interface 'AssertClause' cannot simultaneously extend types 'ImportAttributes' and 'Node'.
Named property 'kind' of types 'ImportAttributes' and 'Node' are not identical.
Interface 'AssertClause' cannot simultaneously extend types 'ImportAttributes' and 'Node'.
Named property 'parent' of types 'ImportAttributes' and 'Node' are not identical.
Type 'typeof import("/home/runner/work/raijin/raijin/.yarn/unplugged/prettier-npm-3.2.5-6859110d6a/node_modules/prettier/plugins/estree")' is not assignable to type 'string | Plugin<any>'.
Don't use `Function` as a type. The `Function` type accepts any function-like value.
It provides no type safety when calling the function, which can be a common source of bugs.
It also accepts things like class declarations, which will throw at runtime as they will not be called with `new`.
If you are expecting the function to accept certain arguments, you should explicitly define the function shape.
Don't use `{}` as a type. `{}` actually means "any non-nullish value".
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead.
- If you want a type meaning "empty object", you probably want `Record<string, never>` instead.
- If you really want a type meaning "any non-nullish value", you probably want `NonNullable<unknown>` instead.