10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
import { typescript } from '@repo/eslint-config/typescript';
|
|
|
|
/** @type {import("eslint").Linter.Config} */
|
|
export default [
|
|
...typescript,
|
|
{
|
|
ignores: ['**/types/**'],
|
|
},
|
|
];
|