generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: do not close existing leafs, reuse instead
fix: open the main view in a new tab fixes #36
- Loading branch information
1 parent
03bf4ea
commit b00b6b8
Showing
2 changed files
with
36 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
{ | ||
"extends": "@tsconfig/svelte/tsconfig.json", | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"inlineSources": true, | ||
"module": "ESNext", | ||
"target": "ES6", | ||
"allowJs": true, | ||
"noImplicitAny": true, | ||
"moduleResolution": "node", | ||
"importHelpers": true, | ||
"isolatedModules": true, | ||
"strictNullChecks": true, | ||
"strict": true, | ||
"types": [ | ||
"svelte", | ||
"node" | ||
], | ||
"lib": [ | ||
"DOM", | ||
"ES5", | ||
"ES6", | ||
"ES7" | ||
] | ||
}, | ||
"include": [ | ||
"**/*.ts" | ||
] | ||
"extends": "@tsconfig/svelte/tsconfig.json", | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"inlineSources": true, | ||
"module": "ESNext", | ||
"target": "ES6", | ||
"allowJs": true, | ||
"noImplicitAny": true, | ||
"moduleResolution": "node", | ||
"importHelpers": true, | ||
"isolatedModules": true, | ||
"strictNullChecks": true, | ||
"strict": true, | ||
"noUncheckedIndexedAccess": true, | ||
"types": [ | ||
"svelte", | ||
"node" | ||
], | ||
"lib": [ | ||
"DOM", | ||
"ES5", | ||
"ES6", | ||
"ES7" | ||
] | ||
}, | ||
"include": [ | ||
"**/*.ts" | ||
] | ||
} |