19 lines
326 B
JavaScript
19 lines
326 B
JavaScript
// @ts-check
|
|
|
|
import eslint from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config(
|
|
eslint.configs.recommended,
|
|
tseslint.configs.recommended,
|
|
{
|
|
ignores: [
|
|
'dist/**',
|
|
'test/**',
|
|
'node_modules/**',
|
|
'webpack.dev.js',
|
|
'webpack.prod.js',
|
|
],
|
|
},
|
|
);
|