ts-unused-exports
Version:
ts-unused-exports finds unused exported symbols in your Typescript project
2 lines (1 loc) • 983 B
TypeScript
export declare const USAGE = "\n usage: ts-unused-exports path/to/tsconfig.json [file1.ts file2.ts] [options]\n \n where options are any of:\n --allowUnusedEnums\n --allowUnusedTypes\n --excludeDeclarationFiles\n --excludePathsFromReport=path1;path2\n --exitWithCount\n --exitWithUnusedTypesCount\n --ignoreFiles=<regex>\n --ignoreProductionFiles\n --ignoreTestFiles\n --maxIssues\n --searchNamespaces\n --showLineNumber\n --silent\n --findCompletelyUnusedFiles\n\n Note: if no file is specified after tsconfig, the files will be read from the\n tsconfig's \"files\" key which must be present.\n\n If the files are specified, their path must be relative to the tsconfig file.\n For example, given:\n /\n |-- config\n | -- tsconfig.json\n -- src\n -- file.ts\n\n Then the usage would be:\n ts-unused-exports config/tsconfig.json ../src/file.ts\n ";