Skip to content

Commit 48e4e92

Browse files
devversionmmalerba
authored andcommitted
build: incorrect path mapping in editor tsconfig (#5591)
* The root tsconfig file used to have proper autocompletion in editors like WebStorm is currently not working correctly. The path to the `@angular/cdk/testing` package is mapped to a non-existing folder.
1 parent 589dc05 commit 48e4e92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"paths": {
1818
"@angular/material": ["./src/lib/public_api.ts"],
1919
"@angular/cdk": ["./src/cdk/public_api.ts"],
20-
"@angular/cdk/testing": ["./cdk/testing"]
20+
"@angular/cdk/testing": ["./src/cdk/testing"]
2121
}
2222
},
2323
"include": [

0 commit comments

Comments
 (0)