Skip to content

Commit b0633c5

Browse files
committed
Add failing test
1 parent 2082ef2 commit b0633c5

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

tests/cases/compiler/issue52182.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// @filename: tsconfig.json
2+
{
3+
"compilerOptions": {
4+
"paths": {
5+
"@angular/*": ["./@angular/*"]
6+
}
7+
}
8+
}
9+
10+
// @filename: @angular/core/package.json
11+
{
12+
"name": "@angular/core",
13+
"typings": "index.d.ts"
14+
}
15+
16+
// @filename: @angular/core/index.ts
17+
export {};
18+
19+
// @filename: @angular/core/testing/test.ts
20+
import "@angular/core";

0 commit comments

Comments
 (0)