learning_ai_common_plat/packages/ui/eslint.config.js

19 lines
409 B
JavaScript

export default [
{
files: ['src/**/*.{ts,tsx}'],
languageOptions: {
globals: {
HTMLButtonElement: 'readonly',
HTMLSpanElement: 'readonly',
HTMLDivElement: 'readonly',
HTMLInputElement: 'readonly',
React: 'readonly',
setTimeout: 'readonly',
Date: 'readonly',
Math: 'readonly',
console: 'readonly',
},
},
},
];