mirror of
https://github.com/ggml-org/llama.vscode.git
synced 2026-05-07 01:15:23 +00:00
* menu.ts is refactored - services classes are extracted * - Refactor menu.ts model - extract services - agent "Ask" added for questions about the project without changing the files - predefiled free models from OpenRouter added (and xAi removed as not free anymore) - Some bugs fixed --------- Co-authored-by: igardev <ivailo.gardev@akros.ch>
15 lines
668 B
JSON
15 lines
668 B
JSON
// 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
|
|
"typescript.tsc.autoDetect": "off",
|
|
"testing.automaticallyOpenPeekView": "onFailure",
|
|
"testing.automaticallyOpenTestResults": "onFailure",
|
|
"mochaExplorer.files": "dist/test/suite/**/*.test.js",
|
|
"mochaExplorer.require": "dist/test/runTest.js"
|
|
}
|