mirror of
https://github.com/MultiMote/niimbluelib.git
synced 2025-03-16 03:21:01 +03:00
19 lines
427 B
JavaScript
19 lines
427 B
JavaScript
|
import globals from "globals";
|
||
|
import pluginJs from "@eslint/js";
|
||
|
import tseslint from "typescript-eslint";
|
||
|
|
||
|
export default [
|
||
|
{ files: ["**/*.{ts}"] },
|
||
|
{
|
||
|
languageOptions: {
|
||
|
globals: globals.browser,
|
||
|
parserOptions: {
|
||
|
project: "tsconfig.json",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
pluginJs.configs.recommended,
|
||
|
...tseslint.configs.recommendedTypeChecked,
|
||
|
{ ignores: ["dist/*", "dumps/*", "**/*.{mjs,js}"] },
|
||
|
];
|