import type { OxlintConfig } from 'oxlint'; const config: OxlintConfig = { plugins: ['typescript', 'react', 'import'], rules: { 'typescript/no-explicit-any': 'off', 'typescript/no-non-null-assertion': 'warn', }, settings: { react: { version: '19.0.0', }, }, }; export default config;