const { defineConfig } = require('@coze-arch/eslint-config'); module.exports = defineConfig({ packageRoot: __dirname, preset: 'web', overrides: [ { files: ['**/*.test.ts', '**/*.test.tsx', '**/__tests__/**/*'], rules: { '@typescript-eslint/no-empty-function': 'off', }, }, ], });