mirror of
https://github.com/apokaliptics/concrete-extension.git
synced 2026-07-22 06:52:00 +00:00
Release 0.3.0
This commit is contained in:
parent
7e0d8c4638
commit
d1e9a62039
3 changed files with 3 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "concrete-extension",
|
||||
"version": "0.2.0",
|
||||
"version": "0.3.0",
|
||||
"description": "Reactive variable system for Markdown notes.",
|
||||
"main": "main.js",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ export class ReactiveVariablesSettingTab extends PluginSettingTab {
|
|||
|
||||
new Setting(containerEl)
|
||||
.setName("Hide pasted images in sidebar")
|
||||
.setDesc("Hides 'Pasted image ...' files from the File Explorer.")
|
||||
.setDesc("Hides pasted image files from the file explorer.")
|
||||
.addToggle((toggle) =>
|
||||
toggle
|
||||
.setValue(this.plugin.settings.hidePastedImagesInSidebar)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": "src",
|
||||
"inlineSourceMap": true,
|
||||
"inlineSources": true,
|
||||
"module": "ESNext",
|
||||
|
|
@ -9,7 +8,7 @@
|
|||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"noImplicitReturns": true,
|
||||
"moduleResolution": "node",
|
||||
"moduleResolution": "bundler",
|
||||
"importHelpers": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"isolatedModules": true,
|
||||
|
|
|
|||
Loading…
Reference in a new issue