mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2024-12-12 09:04:06 +02:00
7f422d58f2
- Task scheduling logics has been rewritten. - Possibly many bugs and fragile behaviour has been fixed - Fixed: - Remote-chunk-fetching now works with keeping request intervals - New feature: - We can show only the icons in the editor.
36 lines
813 B
JSON
36 lines
813 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,
|
|
"noEmit": true,
|
|
"lib": [
|
|
"es2018",
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"es2019.array",
|
|
"ES2020.BigInt",
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"pouchdb-browser-webpack"
|
|
]
|
|
} |