319 B
319 B
description
| description |
|---|
| Count lines of TypeScript source code excluding tests |
// turbo-all
- Count TypeScript lines excluding tests:
(Get-ChildItem -Recurse -Include *.ts -Exclude *.test.ts,*.spec.ts -Path . | Where-Object { $_.FullName -notmatch '\\node_modules\\' } | Get-Content | Measure-Object -Line).Lines