
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Monorepo solution for multiple typescript projects. Watch multiple typescript compilers concurrently at the same time, without losing output!
Monorepo solution for multiple typescript projects. Watch multiple typescript compilers concurrently at the same time, without losing output!
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.
This package has a peerdependency on tslint. The tool allows you to not use tslint, but will fail if tslint cannot be found. Currently nobody has complained about it (or anything for that matter) so it won't be fixed. Most serious typescript projects have tslint anyway.
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)
-l, --lint [path_to_tslintrules] Path to tslint rules for all projects (will search if not given)
--noEmit Do not emit outputs
--tslintAlwaysShowAsWarning Always show tslint output as warning
-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.
Install the right plugin and follow the README: https://github.com/Microsoft/typescript-tslint-plugin
Tslint section of config spec here
{
"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"]
}
Mtsc is proudly used for development at Mendix
FAQs
Monorepo solution for multiple typescript projects. Watch multiple typescript compilers concurrently at the same time, without losing output!
The npm package mtsc receives a total of 74 weekly downloads. As such, mtsc popularity was classified as not popular.
We found that mtsc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.