1
1
mirror of https://github.com/kahole/edamagit.git synced 2024-09-11 07:15:31 +03:00
edamagit/.vscode/settings.json

12 lines
498 B
JSON
Raw Permalink Normal View History

2019-12-04 20:23:06 +03:00
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
2019-12-13 00:09:00 +03:00
"typescript.tsc.autoDetect": "off",
"typescript.tsdk": "node_modules/typescript/lib"
2019-12-04 20:23:06 +03:00
}