{"id":18706419,"url":"https://github.com/chisel/ease-task-typescript","last_synced_at":"2025-07-31T19:32:51.457Z","repository":{"id":51810469,"uuid":"194473872","full_name":"chisel/ease-task-typescript","owner":"chisel","description":"TypeScript compiler plugin for Ease task runner","archived":false,"fork":false,"pushed_at":"2021-05-09T21:11:13.000Z","size":12,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-28T09:02:48.939Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chisel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-06-30T04:15:24.000Z","updated_at":"2021-02-14T13:17:00.000Z","dependencies_parsed_at":"2022-08-28T21:01:58.564Z","dependency_job_id":null,"html_url":"https://github.com/chisel/ease-task-typescript","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisel%2Fease-task-typescript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisel%2Fease-task-typescript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisel%2Fease-task-typescript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chisel%2Fease-task-typescript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chisel","download_url":"https://codeload.github.com/chisel/ease-task-typescript/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239571542,"owners_count":19661164,"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":[],"created_at":"2024-11-07T12:14:04.467Z","updated_at":"2025-02-18T23:43:01.237Z","avatar_url":"https://github.com/chisel.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ease Task Runner TypeScript Plugin\n\nThis is a plugin for the [Ease task runner](https://github.com/chisel/ease). It uses the [typescript](https://www.npmjs.com/package/typescript) module to transpile TypeScript files.\n\n# Installation\n\n```\nnpm install ease-task-typescript --save-dev\n```\n\n**easeconfig.js:**\n```js\nconst ts = require('ease-task-typescript');\n\nmodule.exports = ease =\u003e {\n\n  ease.install('transpile-ts', ts, {});\n\n};\n```\n\n# Configuration\n\nThis plugin takes a config object similar to [TypeScript Compiler Options](https://www.typescriptlang.org/docs/handbook/compiler-options.html) while adding the following properties:\n  - `cleanOutDir`: Boolean indicating if the output directory should be emptied first\n  - `tsconfig`: A path to the `tsconfig.json` file, relative to `easeconfig.js`\n  - `useLocal`: If true, the plugin will use the local TypeScript module instead of the one shipped (defaults to `false`).\n\n\u003e If `tsconfig` is present, all the compiler options will be ignored and loaded from the file instead.\n\u003e Keep in mind that `useLocal` will only work when `easeconfig.js` is sitting at the root (sibling to `node_modules`).\n\n# Example\n\n**easeconfig.js:**\n```js\nconst ts = require('ease-task-typescript');\n\nmodule.exports = ease =\u003e {\n\n  ease.install('transpile-ts', ts, {\n    cleanOutDir: true,\n    tsconfig: 'tsconfig.json'\n  });\n\n  ease.job('transpile-ts-files', ['transpile-ts']);\n\n};\n```\n\n**CLI:**\n```\nease transpile-ts-files\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchisel%2Fease-task-typescript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchisel%2Fease-task-typescript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchisel%2Fease-task-typescript/lists"}