mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-07-06 01:41:48 +02:00
80 lines
2.6 KiB
JSON
80 lines
2.6 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
|
|
},
|
|
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
|
|
"typescript.tsc.autoDetect": "off",
|
|
"frontMatter.content.folders": [
|
|
{
|
|
"title": "documentation",
|
|
"fsPath": "/Users/eliostruyf/nodejs/vscode/vscode-front-matter/docs/content/docs",
|
|
"paths": [
|
|
"/Users/eliostruyf/nodejs/vscode/vscode-front-matter/docs/content/docs",
|
|
"\\Users\\eliostruyf\\nodejs\\vscode\\vscode-front-matter\\docs\\content\\docs"
|
|
]
|
|
}
|
|
],
|
|
"eliostruyf.writingstyleguide.terms.isDisabled": true,
|
|
"eliostruyf.writingstyleguide.biasFree.isDisabled": true,
|
|
"exportall.config.folderListener": [
|
|
"/src/pagesView/state/atom",
|
|
"/src/pagesView/state/selectors"
|
|
],
|
|
"frontMatter.content.pageFolders": [
|
|
{
|
|
"title": "documentation",
|
|
"path": "[[workspace]]/docs/content/docs"
|
|
}
|
|
],
|
|
"frontMatter.taxonomy.contentTypes": [
|
|
{
|
|
"name": "default",
|
|
"fields": [
|
|
{
|
|
"title": "Title",
|
|
"name": "title",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"title": "Description",
|
|
"name": "description",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"title": "Publishing date",
|
|
"name": "date",
|
|
"type": "datetime"
|
|
},
|
|
{
|
|
"title": "Last modified date",
|
|
"name": "lastmod",
|
|
"type": "datetime"
|
|
},
|
|
{
|
|
"title": "Article preview",
|
|
"name": "preview",
|
|
"type": "image"
|
|
},
|
|
{
|
|
"title": "Is in draft",
|
|
"name": "draft",
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"title": "Tags",
|
|
"name": "tags",
|
|
"type": "tags"
|
|
},
|
|
{
|
|
"title": "Categories",
|
|
"name": "categories",
|
|
"type": "categories"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
} |