mirror of
https://github.com/foambubble/foam.git
synced 2026-01-09 14:08:13 -05:00
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
"files.exclude": {
|
|
// set these to true to hide folders with the compiled JS files,
|
|
"packages/**/out": false,
|
|
"packages/**/dist": false
|
|
},
|
|
"search.exclude": {
|
|
// set this to false to include compiled JS folders in search results
|
|
"packages/**/out": true,
|
|
"packages/**/dist": true
|
|
},
|
|
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
|
|
"typescript.tsc.autoDetect": "off",
|
|
"foam.edit.linkReferenceDefinitions": "withExtensions",
|
|
"foam.files.ignore": [
|
|
"**/.vscode/**/*",
|
|
"**/_layouts/**/*",
|
|
"**/_site/**/*",
|
|
"**/node_modules/**/*",
|
|
"packages/**/*"
|
|
],
|
|
"editor.tabSize": 2,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnSaveMode": "file",
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"jest.rootPath": "packages/foam-vscode",
|
|
"jest.jestCommandLine": "yarn test:unit",
|
|
"gitdoc.enabled": false,
|
|
"search.mode": "reuseEditor",
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
}
|
|
}
|