mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 08:15:38 +02:00
12 lines
300 B
JavaScript
12 lines
300 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ["@nestri/eslint-config/qwik.js"],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
//Find some way to use the lint tsconfig
|
|
project: "./tsconfig.json",
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
};
|