ente/packages/utils/eslint.config.js
Manav Rathi a9a810ab99 Add typescript configuration in eslint
VSCode still gives an error

We had to set the type to module to get the `import` to work. Setting .mjs
didn't work (eslint didn't recognize the file). Setting the type to module
should be (based on my current understanding) not affect us negatively since we
are exporting a TypeScript library not a bundled one, and all the other source
files apart from this are intended to be `*.ts`.

Refs:
- https://jeremyrichardson.dev/blog/saga_of_learning_exports_property_in_packagejson
- https://github.com/eslint/eslint/discussions/17021
2024-02-16 20:48:26 +05:30

12 lines
217 B
JavaScript

// @ts-check
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
console.log(tseslint);
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended
);