We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4995b28 commit 5cebbc8Copy full SHA for 5cebbc8
src/import-paths.ts
@@ -25,7 +25,6 @@ function findAlias(
25
ignoredPaths: string[] = [],
26
) {
27
if (fs.existsSync(path.join(baseDir, 'tsconfig.json'))) {
28
- console.log({ importPath, filePath, baseDir });
29
const tsconfig = JSON.parse(
30
fs.readFileSync(path.join(baseDir, 'tsconfig.json')).toString('utf8'),
31
);
@@ -113,8 +112,6 @@ const rule: Rule.RuleModule = {
113
112
resolvedIgnoredPaths,
114
115
116
- console.log({ replacement, source });
117
-
118
if (!replacement) return;
119
120
context.report({
0 commit comments