* great typescript module import refactor * refactor metamigo-cli so it is the entrypoint for the db, api, and worker
12 lines
No EOL
310 B
JavaScript
12 lines
No EOL
310 B
JavaScript
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/jest",
|
|
],
|
|
parserOptions: { tsconfigRootDir: __dirname },
|
|
rules: {
|
|
"new-cap": "off"
|
|
},
|
|
}; |