{"id":15680998,"url":"https://github.com/damassi/typescript-watcher","last_synced_at":"2025-05-07T11:41:51.077Z","repository":{"id":5599774,"uuid":"6806651","full_name":"damassi/typescript-watcher","owner":"damassi","description":"A Node.js file-watcher for TypeScript, providing common functionality currently missing in the tsc command. (Very much deprecated)","archived":false,"fork":false,"pushed_at":"2019-02-20T08:13:35.000Z","size":70,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-09T07:36:11.895Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/damassi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2012-11-22T02:27:01.000Z","updated_at":"2024-01-18T06:49:00.000Z","dependencies_parsed_at":"2022-09-14T17:43:00.522Z","dependency_job_id":null,"html_url":"https://github.com/damassi/typescript-watcher","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/damassi%2Ftypescript-watcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damassi%2Ftypescript-watcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damassi%2Ftypescript-watcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damassi%2Ftypescript-watcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/damassi","download_url":"https://codeload.github.com/damassi/typescript-watcher/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252873279,"owners_count":21817704,"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-10-03T16:47:57.615Z","updated_at":"2025-05-07T11:41:51.058Z","avatar_url":"https://github.com/damassi.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This package is wayyy old, don't use it :)   \n\n\nTypeScript-Watcher\n==================\n\nA Node.js file-watcher for TypeScript, providing common functionality currently missing in the tsc command, notably external configuration, the inability to specify output paths for individual files or groups and recursive, multi-file compilations.\n\nInstallation\n-------------\n- Run `npm install -g typescript-watcher`\n\n\nUsage\n-----\n\n1. Build: To build all .ts sources and ouput .js files into a location, execute \n\t* `tscwatch build \u003crootPath\u003e \u003coutputPath\u003e [options]`\n2. Watch: To continuously watch .ts files for changes and output compiled .js, execute \n\t* `tscwatch watch \u003crootPath\u003e \u003coutputPath\u003e [options]`\n3. Load Config: To load an external config .json file, execute \n  * `tscwatch run-config \u003cpath to config.json\u003e [options]`\n\n**Configuration Options**\n\n```\n{\n  \"watch\": false,\n  \"rootPath\": \"tests/app\",\n  \"outputPath\": \"tests/public2\",\n  \"compilerOptions\": {\n    \"comments\"    : true, \n    \"debug\"     : false, \n    \"declaration\" : false, \n    \"minw\"      : false, \n    \"moduleType\"  : \"AMD\", \n    \"sourcemap\"   : false, \n    \"target\"    : \"ES3\" \n  }\n}\n```\n\n\n\n\n**More options**\n\n```\nUsage: tscwatch [command] [options]\n\nPossible commands are:\n  tscwatch build: Build TypeScript project (short-cut alias: 'b')\n  tscwatch watch: Watch TypeScript project for changes and automatically compile (short-cut alias: 'w')\n  tscwatch run-config: Load config file and run tscwatch based upon supplied params (short-cut alias: 'rc')\n\nTo get help on individual command, execute 'tscwatch \u003ccommand\u003e --help' [options]\n\nOptions:\n  -c, --comments    output comments in the compiled source\n  -m, --moduleType  set the compiled source module type (commonjs or AMD).  Default is commonjs\n  -s, --sourcemap   output sourcemaps alongside compiled source\n  -t, --target      output JavaScript version; options are \"ES3\" and \"ES5\".  Default is \"ES3\"\n  -v, --version     display tscwatch version\n```\n\n\nTODO\n----\n- Write more tests\n\nThanks\n-------\n- Core TypeScript compilation code was extracted from Josh Heyse's **typescript-brunch** plugin:  https://github.com/joshheyse/typescript-brunch\n- Inspiration and various file-utilities came from Paul Miller's incredible application-assembler, **Brunch**: https://github.com/brunch\n\n## License\nThe MIT license.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamassi%2Ftypescript-watcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdamassi%2Ftypescript-watcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamassi%2Ftypescript-watcher/lists"}