68 lines
2.3 KiB
JSON
68 lines
2.3 KiB
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
|
|
},
|
|
"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
|
|
// if you install the mocha test explorer extension, you can run the unit tests from the test explorer UI
|
|
"testExplorer.useNativeTesting": true,
|
|
"mochaExplorer.files": "./**/unit/**/*.test.js",
|
|
"mochaExplorer.watch": "./**/unit/**/*.test.js",
|
|
"mochaExplorer.ignore": [
|
|
"**/*skip*",
|
|
"**/dist/test/**/*.d.ts",
|
|
"**/node_modules/**"
|
|
],
|
|
"mochaExplorer.debuggerConfig": "MochaTest",
|
|
"mochaExplorer.logpanel": true,
|
|
"mochaExplorer.timeout": 500000,
|
|
"mochaExplorer.require": [
|
|
"source-map-support/register"
|
|
],
|
|
"mochaExplorer.monkeyPatch": true,
|
|
"[json]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "vscode.json-language-features",
|
|
"editor.tabSize": 4,
|
|
"files.insertFinalNewline": false
|
|
},
|
|
"[jsonc]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "vscode.json-language-features",
|
|
"editor.tabSize": 4,
|
|
"files.insertFinalNewline": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.tabSize": 4,
|
|
"editor.defaultFormatter": "vscode.typescript-language-features",
|
|
"editor.formatOnSave": true,
|
|
"files.insertFinalNewline": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.organizeImports": "explicit"
|
|
},
|
|
},
|
|
"eslint.format.enable": true,
|
|
"[javascript]": {
|
|
"editor.tabSize": 4,
|
|
},
|
|
"markdown.extension.list.indentationSize": "inherit",
|
|
"markdown.extension.toc.levels": "2..6",
|
|
"[markdown]": {
|
|
"editor.tabSize": 4,
|
|
},
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"changeProcessCWD": true,
|
|
"directory": "./",
|
|
},
|
|
{
|
|
"changeProcessCWD": true,
|
|
"directory": "./.scripts",
|
|
}
|
|
],
|
|
}
|