Skip to content

Commit 055a0aa

Browse files
committed
fix(@schematics/angular): correct spacing in application spec tsconfig
The `types` field in an application's `tsconfig.spec.json` was incorrectly indented to many places.
1 parent ffa7266 commit 055a0aa

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/schematics/angular/application/files/common-files/tsconfig.spec.json.template

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
"extends": "<%= relativePathToWorkspaceRoot %>/tsconfig.json",
55
"compilerOptions": {
66
"outDir": "<%= relativePathToWorkspaceRoot %>/out-tsc/spec",
7-
"types": [
8-
"<%= testRunner === 'vitest' ? 'vitest/globals' : 'jasmine' %>"
9-
] },
7+
"types": [
8+
"<%= testRunner === 'vitest' ? 'vitest/globals' : 'jasmine' %>"
9+
]
10+
},
1011
"include": [
1112
"src/**/*.ts"
1213
]

0 commit comments

Comments
 (0)