Skip to content

Commit df9865f

Browse files
devversionclydin
authored andcommitted
build: exclude CLI workspace projects from tsconfig to speed up IDE/linting
Excludes CLI workspace projects from main project/IDE tsconfig to speed up language service actions and linting. Those files should not be considered part of the development sources.
1 parent 717706d commit df9865f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tsconfig.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
"dist-schema/**",
3434
"**/node_modules/**/*",
3535
"**/third_party/**/*",
36-
"packages/angular_devkit/schematics_cli/schematic/files/**/*"
36+
"packages/angular_devkit/schematics_cli/schematic/files/**/*",
37+
"modules/testing/builder/projects/**/*",
38+
"packages/angular_devkit/build_angular/test/**/*",
39+
"packages/angular_devkit/build_webpack/test/**/*"
3740
]
3841
}

0 commit comments

Comments
 (0)