Skip to content

Commit

Permalink
build: exclude CLI workspace projects from tsconfig to speed up IDE/l…
Browse files Browse the repository at this point in the history
…inting

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.
  • Loading branch information
devversion authored and clydin committed Jan 23, 2025
1 parent 717706d commit df9865f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
"dist-schema/**",
"**/node_modules/**/*",
"**/third_party/**/*",
"packages/angular_devkit/schematics_cli/schematic/files/**/*"
"packages/angular_devkit/schematics_cli/schematic/files/**/*",
"modules/testing/builder/projects/**/*",
"packages/angular_devkit/build_angular/test/**/*",
"packages/angular_devkit/build_webpack/test/**/*"
]
}

0 comments on commit df9865f

Please sign in to comment.