npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@line/ts-remove-unused

v0.7.0

Published

Remove unused code from your TypeScript project

Downloads

3,668

Readme

npm version CI

Features

  • 🛠️ Auto-fix unused exports — removes the export keyword from the declaration or the whole declaration based on its usage
  • 🧹 Deletes TypeScript modules that have no referenced exports
  • 🕵️ --check mode — reports unused exports and deletable files without writing changes

Install

npm install @line/ts-remove-unused

TypeScript is a peer dependency.

Quick Start

  1. 🔍 Check your tsconfig.json – Make sure include and exclude is configured thoroughly so that we can correctly detect what's "unused" in your project.

  2. 🔍 Check your entrypoint files – What's the file that is the starting point for your code? Without this information, all files will be recognized as unnecessary. Usually it is some file like src/main.ts or maybe a group of files like src/pages/*.

  3. 🚀 Execute – Set a regex pattern that matches your entry files for --skip. You can optionally set --project to a path to your custom tsconfig.json if necessary.

npx @line/ts-remove-unused --skip 'src/main\.ts$'

[!WARNING] THIS COMMAND WILL DELETE CODE FROM YOUR PROJECT. Using it in a git controlled environment is highly recommended. If you're just playing around use --check.

Examples

Here are some examples of how this tool will auto-fixe unused code.

When a2 is not used within the project:

--- src/a.ts
+++ src/a.ts
@@ -1,3 +1 @@
 export const a = 'a';
-
-export const a2 = 'a2';

When b is not used within the project but f() is used within the project:

--- src/b.ts
+++ src/b.ts
@@ -1,5 +1,5 @@
-export const b = 'b';
+const b = 'b';
 
 export function f() {
     return b;
 }

When f() is not used within the project and when deleting it will result in import being unnecessary:

--- src/c.ts
+++ src/c.ts
@@ -1,7 +1 @@
-import { cwd } from "node:process";
-
 export const c = 'c';
-
-export function f() {
-    return cwd();
-}

When f() and exported are not used within the project and when deleting f() will result in exported and local being unnecessary:

--- src/d.ts
+++ src/d.ts
@@ -1,8 +1 @@
-export const exported = "exported";
-const local = "local";
-
 export const d = "d";
-
-export function f() {
-  return { exported, local };
-}

In addition to the behavior shown in the examples above, ts-remove-unused will delete files that have no used exports.

ts-remove-unused works with all kinds of code: variables, functions, interfaces, classes, type aliases and more!

Usage

Options

Usage:
  $ ts-remove-unused 

Commands:
    There are no subcommands. Simply execute ts-remove-unused

For more info, run any command with the `--help` flag:
  $ ts-remove-unused --help

Options:
  --project <file>          Path to your tsconfig.json 
  --skip <regexp_pattern>   Specify the regexp pattern to match files that should be skipped from transforming 
  --include-d-ts            Include .d.ts files in target for transformation 
  --check                   Check if there are any unused exports without removing them 
  --experimental-recursive  Recursively process files until there are no issue 
  -h, --help                Display this message 
  -v, --version             Display version number 

--project

Specifies the tsconfig.json that is used to analyze your codebase. Defaults to tsconfig.json in your project root.

npx @line/ts-remove-unused --skip tsconfig.client.json

--skip

Skip files that match a given regex pattern. Note that you can pass multiple patterns.

npx @line/ts-remove-unused --skip 'src/main\.ts' --skip '/pages/'

--include-d-ts

By default, .d.ts files are skipped. If you want to include .d.ts files, use the --include-d-ts option.

--check

Use --check to check for unused files and exports without making changes to project files. The command will exit with exit code 1 if there are any unused files or exports discovered.

npx @line/ts-remove-unused --skip 'src/main\.ts' --check

--experimental-recursive

The default behavior of the CLI is to process all files once. Some issues may not be detected if the unused code is a result of the modification of another file in the project. When this option is enabled, ts-remove-unused will recursively re-edit/re-check files that may be affected by a file edit.

This option is still experimental since it's not optimized (yet) for large scale projects. Using this flag for large scale projects is not recommended.

Use the JavaScript API

Alternatively, you can use the JavaScript API to execute ts-remove-unused.

import { remove } from '@line/ts-remove-unused';

await remove({
  configPath: '/path/to/project/tsconfig.json',
  projectRoot: '/path/to/project',
  skip: [/main\.ts/],
  mode: 'write',
});

Skip

When you add a comment // ts-remove-unused-skip to your export declaration, it will be skipped from being removed

// ts-remove-unused-skip
export const hello = 'world';

Handling test files

If you have a separate tsconfig for tests using Project References, that would be great! ts-remove-unused will remove exports/files that exist for the sake of testing.

If you pass a tsconfig.json to the CLI that includes both the implementation and the test files, ts-remove-unused will remove your test files since they are not referenced by your entry point file (which is specified in --skip). You can avoid tests being deleted by passing a pattern that matches your test files to --skip in the meantime, but the recommended way is to use project references to ensure your TypeScript config is more robust and strict (not just for using this tool).

Comparison

TypeScript

If you enable compilerOptions.noUnusedLocals, declarations that are never read will be reported.

// 'a' is declared but its value is never read.
const a = 'a';

However, when you export it, no errors will be reported regardless of its usage within the project. ts-remove-unused's aim is to report/fix unused code while taking project wide usage into account.

ESLint

ESLint will detect unused imports. Plugins such as eslint-plugin-unused-imports can also auto-fix this issue.

// 'foo' is defined but never used.
import { foo } from './foo';

However, we can't detect unused exports. ESLint's architecture works in a file by file basis and was never intended to provide linting based on project-wide usage stats.

// a lint rule that detects if this export is used within the project is unlikely to be introduced
export const a = 'a';

ts-remove-unused's main goal is to remove unused exports and delete unused modules, but it will also delete unused imports that are a result of removing an export declaration.

Author

Kazushi Konosu (https://github.com/kazushisan)

Contributing

Contributions are welcomed!

License

Copyright (C) 2023 LINE Corp.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.