@tomei/customer-base
Version:
Tomei Customer Base Package
17 lines (16 loc) • 417 B
Plain Text
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module" // Allows for the use of imports
},
"extends": ["plugin:@typescript-eslint/recommended"],
"env": {
"node": true // Enable Node.js global variables
},
"rules": {
"no-console": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/no-unused-vars": "warn"
}
}