Monorepo solution for multiple typescript projects. Watch multiple typescript compilers concurrently at the same time, without losing output!
The vision and goal for Mtsc is, and always has been, the following:
- Be able to lint and ts-compile multiple projects, concurrently whilst keeping all the results (not possible with just
concurrently
) - Facilitate proper vscode integration which means:
- See lint and tsc result without having to open a specific file
- Require the least amount of necessary configurability
- Support mono-repo's natively
- Support the following workflow:
- Clone a project
yarn
code .
cmd+shift+b
- See what's happening in your whole monorepo and be able to work at the same time (watchmode). :mindblown:
NOTE: Supported versions: Typescript 2.8+. Use Mtsc 1.* for older versions
mtsc [directories/tsconfigs...]
./node_modules/.bin/mtsc client scripts/ide.tsconfig.json special/location
mtsc client scripts/ide.tsconfig.json special/location -w
mtsc -c client/tsconfig.json scripts/ide.tsconfig.json -w
mtsc -c node_modules/.bin/tsc client/tsconfig.json scripts/ide.tsconfig.json -w
I began this project because vscode can't handle the output of multiple typescript projects. If you have multiple projects watched at the same time, only the output of the last compilation will be considered and the other errors of other projects are hidden. This has to do, with the problem matcher vscode uses, explained here: https://code.visualstudio.com/docs/editor/tasks-v1#_background-watching-tasks
This always prints the compilation output of the other projects when a new compilation is done. It also makes sure that the interpreter knows there is still a compilation going on by printing a compilation start message when there is still one running.
- Please let me know
Usage: mtsc [options] [projects/tsconfigs...]
Options:
-d, --debug Add way too much logging
-c, --config [path_to_config] Path to mtsc config
-w, --watch Watch the given projects (default false)
-t, --tsc [path_to_tsc] Path to compiler for all projects (will search in exec dir if not given)
--noEmit Do not emit outputs
-h, --help output usage information
Set the typescript compiler in vscode by clicking on the compiler version. This is only possible when you open a typescript file. This setting sometimes goes to the builtin vscode compiler, so if you don't see errors; check this first.
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Mtsc",
"command": "./node_modules/.bin/mtsc -w projectA scripts/projectB projectC/tsconfig.json",
"isBackground": true,
"problemMatcher": "$tsc-watch",
"group": {
"kind": "build",
"isDefault": true
},
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
tasks.json
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Mtsc",
"command": "./node_modules/.bin/mtsc",
"isBackground": true,
"problemMatcher": "$tsc-watch",
"group": {
"kind": "build",
"isDefault": true
},
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
mtsc.json
(will be autodetected)
{
"debug": false,
"watch": true,
"projects": ["projectA", "scripts/projectB", "projectC/tsconfig.json"]
}
- Any ideas? Let me know :)
Mtsc is proudly used for development at Mendix