mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-06 20:14:01 -06:00
This eliminates a significant number of dependencies, eliminating all npm audit issues, speeding up `npm ci` by 20%, and overall making the build faster (faster startup, direct code is faster than streams, etc) and clearer to understand. I'm finding it much easier to make build changes for the module transform with this; I can more clearly indicate task dependencies and prevent running tasks that don't need to be run. Given we're changing our build process entirely (new deps, new steps), it seems like this is a good time to change things up.
24 lines
774 B
JSON
24 lines
774 B
JSON
// Rename this file 'settings.json' or merge its
|
|
// contents into your existing settings.
|
|
{
|
|
// To use the last-known-good (LKG) compiler version:
|
|
// "typescript.tsdk": "lib"
|
|
|
|
// To use the locally built compiler, after 'npm run build':
|
|
// "typescript.tsdk": "built/local"
|
|
|
|
// To ignore commits listed in .git-blame-ignore-revs in GitLens:
|
|
// "gitlens.advanced.blame.customArguments": [
|
|
// "--ignore-revs-file",
|
|
// ".git-blame-ignore-revs"
|
|
// ]
|
|
|
|
// These options search the repo recursively and slow down
|
|
// the build task menu. We define our own in tasks.json.
|
|
"typescript.tsc.autoDetect": "off",
|
|
"npm.autoDetect": "off",
|
|
"grunt.autoDetect": "off",
|
|
"jake.autoDetect": "off",
|
|
"gulp.autoDetect": "off"
|
|
}
|