Skip to content

Commit 08ede96

Browse files
committed
fix: ignore spec files when building for mobile
1 parent 138640f commit 08ede96

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/add-ns/_ns-files/tsconfig.aot.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"**/*.ns.ts",
1616
"**/*<%= nsext %>.ts",
1717
"**/*.android.ts",
18-
"**/*.ios.ts"
18+
"**/*.ios.ts",
19+
"**/*.spec.ts"
1920
]
20-
}
21+
}

src/ng-new/shared/_files/tsconfig.aot.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"**/*.ns.ts",
1616
"**/*.tns.ts",
1717
"**/*.android.ts",
18-
"**/*.ios.ts"
18+
"**/*.ios.ts",
19+
"**/*.spec.ts"
1920
]
20-
}
21+
}

0 commit comments

Comments
 (0)