@sentzunhat/zacatl
Version:
A modular, high-performance TypeScript microservice framework for Node.js, featuring layered architecture, dependency injection, and robust validation for building scalable APIs and distributed systems.
40 lines • 1.01 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.importPlugin = exports.tsEslintPlugin = exports.tseslint = exports.tsEslintParser = void 0;
exports.tsEslintParser = (() => {
try {
const mod = require('@typescript-eslint/parser');
const candidate = mod != null ? mod.default ?? mod : undefined;
return candidate;
}
catch {
return undefined;
}
})();
exports.tseslint = (() => {
try {
return require('typescript-eslint');
}
catch {
return undefined;
}
})();
exports.tsEslintPlugin = (() => {
try {
const mod = require('@typescript-eslint/eslint-plugin');
const candidate = mod != null ? mod.default ?? mod : undefined;
return candidate;
}
catch {
return undefined;
}
})();
exports.importPlugin = (() => {
try {
return require('eslint-plugin-import');
}
catch {
return undefined;
}
})();
//# sourceMappingURL=eslint.js.map