tslint-to-eslint-config
Version:
Converts your TSLint configuration to the closest reasonable ESLint equivalent.
21 lines • 644 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.convertNoReferenceImport = void 0;
const convertNoReferenceImport = () => {
return {
rules: [
{
ruleName: "@typescript-eslint/triple-slash-reference",
ruleArguments: [
{
path: "always",
types: "prefer-import",
lib: "always",
},
],
},
],
};
};
exports.convertNoReferenceImport = convertNoReferenceImport;
//# sourceMappingURL=no-reference-import.js.map