{"id":15506233,"url":"https://github.com/fi3ework/rollup-plugin-fork-ts-checker","last_synced_at":"2025-07-06T16:39:23.967Z","repository":{"id":43168269,"uuid":"261713328","full_name":"fi3ework/rollup-plugin-fork-ts-checker","owner":"fi3ework","description":"🚀 Rollup plugin that runs typescript type checker on a separate process.","archived":false,"fork":false,"pushed_at":"2021-01-12T13:55:33.000Z","size":575,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-23T01:56:28.244Z","etag":null,"topics":["eslint","rollup","rollup-plugin","speedup","typescript"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/rollup-plugin-fork-ts-checker","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fi3ework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-05-06T09:34:29.000Z","updated_at":"2022-07-06T10:46:38.000Z","dependencies_parsed_at":"2022-09-13T12:51:30.705Z","dependency_job_id":null,"html_url":"https://github.com/fi3ework/rollup-plugin-fork-ts-checker","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fi3ework%2Frollup-plugin-fork-ts-checker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fi3ework%2Frollup-plugin-fork-ts-checker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fi3ework%2Frollup-plugin-fork-ts-checker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fi3ework%2Frollup-plugin-fork-ts-checker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fi3ework","download_url":"https://codeload.github.com/fi3ework/rollup-plugin-fork-ts-checker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250354304,"owners_count":21416751,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["eslint","rollup","rollup-plugin","speedup","typescript"],"created_at":"2024-10-02T09:26:23.892Z","updated_at":"2025-04-23T01:56:34.933Z","avatar_url":"https://github.com/fi3ework.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rollup-plugin-fork-ts-checker\n\n\u003e The project is currently in alpha phase.\n\n[fork-ts-checker-webpack-plugin](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin) is a great Webpack plugin that saves time from waiting for type checking. This repo heavily relies on fork-ts-checker-webpack-plugin, core logic of type checking is directly imported from it, with a adapation for Rollup.\n\n![npm](https://img.shields.io/npm/v/rollup-plugin-fork-ts-checker) ![CI](https://github.com/fi3ework/rollup-plugin-fork-ts-checker/workflows/CI/badge.svg) ![npm](https://img.shields.io/npm/dw/rollup-plugin-fork-ts-checker)\n\n## Usage\n\nInstall with NPM\n\n```bash\nnpm i fork-ts-checker-webpack-plugin -D\n```\n\nor with Yarn\n\n```bash\nyarn add fork-ts-checker-webpack-plugin -D\n```\n\nThe original idea for this plugin was to work with [rollup-plugin-typescript2](https://github.com/ezolenko/rollup-plugin-typescript2). It also could work with any none type checking TypeScript compile tool.\n\nHere's a simple Rollup config example work with rpt2:\n\n```js\nconst rpt2 = require('rollup-plugin-typescript2')\nconst ftc = require('rollup-plugin-fork-ts-checker').default\n\nexport default {\n  input: 'src/index.ts',\n  plugins: [\n    ftc({\n      // Plugin options, mostly same as fork-ts-checker-webpack-plugin.\n      // See https://github.com/TypeStrong/fork-ts-checker-webpack-plugin#options\n      // Some options can't be supported. See Caveat section for detail.\n    }),\n    rpt2({\n      // Disable type checking of compiler, leave it to ftc.\n      check: false\n    })\n  ],\n  output: {\n    file: 'bundle.js',\n    format: 'cjs'\n  }\n}\n```\n\n## Caveat\n\nMost options are completely same as [fork-ts-checker-webpack-plugin](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin#options). But some functionality can not be supported.\n\n- Webpack related configurations (e.g. ts-loader, happypack).\n- vue (could be supported, still WIP).\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffi3ework%2Frollup-plugin-fork-ts-checker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffi3ework%2Frollup-plugin-fork-ts-checker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffi3ework%2Frollup-plugin-fork-ts-checker/lists"}