mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2024-12-12 09:04:06 +02:00
b8cb94c498
- Resolving conflicted revision has become more robust. - LiveSync now try to keep local changes when fetching from the rebuilt remote database. - Now, all files will be restored after performing `fetch` immediately.
35 lines
789 B
JSON
35 lines
789 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"inlineSourceMap": true,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"types": [
|
|
"svelte",
|
|
"node"
|
|
],
|
|
// "importsNotUsedAsValues": "error",
|
|
"importHelpers": false,
|
|
"alwaysStrict": true,
|
|
"allowImportingTsExtensions": true,
|
|
"lib": [
|
|
"es2018",
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"es2019.array",
|
|
"ES2020.BigInt",
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"pouchdb-browser-webpack"
|
|
]
|
|
} |