eslint.config.js 361 B

12345678910111213141516171819202122
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. export default [
  6. {
  7. ignores: [
  8. '**/*.d.ts',
  9. '**/node_modules',
  10. '**/dist',
  11. '**/build',
  12. ],
  13. },
  14. {
  15. files: ['**/*.js', '**/*.ts'],
  16. languageOptions: {
  17. ecmaVersion: 'latest',
  18. sourceType: 'module',
  19. },
  20. },
  21. ];