{"id":16100930,"url":"https://github.com/mohammadmd1383/vscode-tsc","last_synced_at":"2026-04-15T18:31:46.909Z","repository":{"id":136695630,"uuid":"380191321","full_name":"MohammadMD1383/vscode-tsc","owner":"MohammadMD1383","description":"Compile typescript in visual studio code without need of installing Node.js","archived":false,"fork":false,"pushed_at":"2021-07-22T18:02:15.000Z","size":11322,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-06T00:26:15.306Z","etag":null,"topics":["api","compiler","extension","javascript","node-js","nodejs","tsc","tsconfig","typescript","visual-studio-code","vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"","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/MohammadMD1383.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-06-25T09:37:38.000Z","updated_at":"2023-06-02T20:19:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"de5cf14f-63b6-4af1-aaf8-f847bbdd433c","html_url":"https://github.com/MohammadMD1383/vscode-tsc","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/MohammadMD1383/vscode-tsc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohammadMD1383%2Fvscode-tsc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohammadMD1383%2Fvscode-tsc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohammadMD1383%2Fvscode-tsc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohammadMD1383%2Fvscode-tsc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MohammadMD1383","download_url":"https://codeload.github.com/MohammadMD1383/vscode-tsc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohammadMD1383%2Fvscode-tsc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31854681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["api","compiler","extension","javascript","node-js","nodejs","tsc","tsconfig","typescript","visual-studio-code","vscode","vscode-extension"],"created_at":"2024-10-09T18:48:42.635Z","updated_at":"2026-04-15T18:31:46.885Z","avatar_url":"https://github.com/MohammadMD1383.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Visual Studio Code TypeScript Compiler\n\nCompile typescript in visual studio code without need of installing **Node.js**\n\n## Table Of Contents\n\n-   [Features](#features)\n-   [How To](#how-to)\n-   [Configurations](#configurations)\n-   [Extension API](#extension-api)\n-   [Notice](#notice)\n-   [Known Issues](#known-issues)\n\n### Features\n\n-   **Single Compilation**: compile any typescript file without need of being in a typescript project:\n    -   see in vscode output\n    -   compile it next to current typescript file\n    -   compile it anywhere you want\n-   **Live View**: see the compiled javascript next to typescript as you edit\n-   **Compile Project**\u003csup\u003e[\\*](#reference)\u003c/sup\u003e: compile a typescript project\n-   **Watch Project**\u003csup\u003e[\\*](#reference)\u003c/sup\u003e: use typescript `watch` feature to compile your project\n\n### How To\n\n**Single Compilation**-**Live View**:\n\n1. open any `.ts` file\n2. click the \u003cimg src=\"https://github.com/MohammadMD1383/vscode-tsc/blob/master/res/icon/compile-single-file/png/tsc-compile-single-file%40dark.png\" alt=\"Image\" width=\"15\" style=\"vertical-align:middle;\"\u003e icon at top right of editor\n3. choose the compilation mode\n\n**Compile Project**:\n\n1. open a vscode workspace(folder)\n2. add a `tsconfig.json` file at the root of your typescript files\n3. a status bar item appears (Compile Project)\n4. click on that and your project will be compiled\n\n**Watch Project**:\n\n1. follow steps 1 and 2 of previous section\n2. right click on `tsconfig.json` file\n3. click _Watch Project_ and your project will be watched\n    - open commands by pressing \u003ckbd\u003eF1\u003c/kbd\u003e\n        - **destroy watch**: destroys an active watch\n        - **show active watches**: shows the current active watches\n\n### Configurations\n\n-   Single Compilation Configurations\n    -   `vscode-tsc.singleCompilationCompilerOptions.module`\n    -   `vscode-tsc.singleCompilationCompilerOptions.target`\n    -   `vscode-tsc.singleCompilationCompilerOptions.strict`\n    -   `vscode-tsc.singleCompilationCompilerOptions.removeComments`\n\n### Extension API\n\nThis extension provides some commands that can be used by other extensions\n\nCurrent Commands:\n\n-   `vscode-tsc.api.transpileModule`\n    -   parameters\n        -   `string` source: typescript code\n        -   `ts.TranspileOptions` options: options for compilation\n    -   returns: `string`: compiled javascript\n\n### Notice\n\n-   for now only `CompilerOptions` in `tsconfig.json` is supported and other configurations will be ignored\n\n### Known Issues\n\n-   nothing yet!\n\n---\n\n\u003cp id=\"reference\"\u003e\n*: needs \u003ccode\u003etsconfig.json\u003c/code\u003e file to be in the root of typescript project\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohammadmd1383%2Fvscode-tsc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohammadmd1383%2Fvscode-tsc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohammadmd1383%2Fvscode-tsc/lists"}