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 f6fd66c commit c246276Copy full SHA for c246276
lint/src/util/theme-support.ts
@@ -17,6 +17,7 @@ import {
17
getComponentClassName,
18
isPartOfViewChild,
19
} from './angular';
20
+import { toUnixStylePath } from './misc';
21
import {
22
isPartOfClassDeclaration,
23
isPartOfTypeExpression,
@@ -127,7 +128,7 @@ class ThemeableComponentRegistry {
127
128
continue;
129
}
130
- const basePath = resolveLocalPath((importDeclaration.moduleSpecifier as ts.StringLiteral).text, path);
131
+ const basePath = resolveLocalPath((importDeclaration.moduleSpecifier as ts.StringLiteral).text, toUnixStylePath(path));
132
133
themeableComponents.add({
134
baseClass,
0 commit comments