metamigo-api should depend on metamigo-cli

This commit is contained in:
Abel Luck 2023-06-02 11:31:04 +00:00
parent bb83d88eeb
commit 55d369ff8d
6 changed files with 16 additions and 8 deletions

View file

@ -1,8 +1,12 @@
require('eslint-config-link/patch/modern-module-resolution');
require("eslint-config-link/patch/modern-module-resolution");
module.exports = {
extends: [
"eslint-config-link/profile/node",
"eslint-config-link/profile/typescript"
"eslint-config-link/profile/typescript",
"eslint-config-link/profile/jest",
],
parserOptions: { tsconfigRootDir: __dirname }
parserOptions: { tsconfigRootDir: __dirname },
rules: {
"new-cap": "off"
},
};