Enable extensible markdown notebook rendering in VS Code workspace

This commit is contained in:
Matt Bierner 2021-02-18 15:36:52 -08:00
parent 25c0fb7f2f
commit 8806d063fe

15
.vscode/settings.json vendored
View file

@ -43,7 +43,9 @@
}
],
"eslint.options": {
"rulePaths": ["./build/lib/eslint"]
"rulePaths": [
"./build/lib/eslint"
]
},
"typescript.tsdk": "node_modules/typescript/lib",
"npm.exclude": "**/extensions/**",
@ -53,11 +55,15 @@
"typescript.preferences.quoteStyle": "single",
"json.schemas": [
{
"fileMatch": ["cgmanifest.json"],
"fileMatch": [
"cgmanifest.json"
],
"url": "./.vscode/cgmanifest.schema.json"
},
{
"fileMatch": ["cglicenses.json"],
"fileMatch": [
"cglicenses.json"
],
"url": "./.vscode/cglicenses.schema.json"
}
],
@ -78,5 +84,6 @@
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true,
},
"typescript.tsc.autoDetect": "off"
"typescript.tsc.autoDetect": "off",
"notebook.experimental.useMarkdownRenderer": true,
}