mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
* - switching from tslint (deprecated) to eslint Co-authored-by: Anton Gilgur <4970083+agilgur5@users.noreply.github.com>
12 lines
429 B
JavaScript
12 lines
429 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint'],
|
|
root: true,
|
|
ignorePatterns: ['dist/**', 'node_modules/**', 'build-self/**', '*.js', "__tests__/integration/fixtures/errors/**"],
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "off", // these are explicit, so they are intentional
|
|
}
|
|
};
|