@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.
37 lines • 858 B
JavaScript
export const tsEslintParser = (() => {
try {
const mod = require('@typescript-eslint/parser');
const candidate = mod != null ? mod.default ?? mod : undefined;
return candidate;
}
catch {
return undefined;
}
})();
export const tseslint = (() => {
try {
return require('typescript-eslint');
}
catch {
return undefined;
}
})();
export const tsEslintPlugin = (() => {
try {
const mod = require('@typescript-eslint/eslint-plugin');
const candidate = mod != null ? mod.default ?? mod : undefined;
return candidate;
}
catch {
return undefined;
}
})();
export const importPlugin = (() => {
try {
return require('eslint-plugin-import');
}
catch {
return undefined;
}
})();
//# sourceMappingURL=eslint.js.map