mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2025-12-30 18:11:29 +00:00
- New chunking algorithm `V3: Fine deduplication` has been added, and will be recommended after updates. - New language `ko` (Korean) has been added. - Chinese (Simplified) translation has been updated. ### Fixed - Numeric settings are now never lost the focus during the value changing. ### Improved - All translations have rewritten into YAML format, to easier manage and contribution. - Doctor recommendations have now shown in the user-friendly notation. ### Refactored - Never ending `ObsidianLiveSyncSettingTag.ts` finally had separated into each pane's file. - Some commented-out codes have been removed.
28 lines
892 B
JSON
28 lines
892 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"inlineSourceMap": true,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "bundler",
|
|
"types": ["svelte", "node"],
|
|
// "importsNotUsedAsValues": "error",
|
|
"importHelpers": false,
|
|
"alwaysStrict": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"lib": ["es2018", "DOM", "ES5", "ES6", "ES7", "es2019.array", "ES2021.WeakRef", "ES2020.BigInt", "ESNext.Intl"],
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@lib/*": ["src/lib/src/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["pouchdb-browser-webpack", "utils", "src/lib/apps"]
|
|
}
|