mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-03-30 05:35:16 +00:00
- `ModuleTargetFilter`, which was responsible for checking if a file is a target file, has been ported to a serviceFeature. - And also tests have been added. The middleware-style-power. - `ModuleObsidianAPI` has been removed and implemented in `APIService` and `RemoteService`. - Now `APIService` is responsible for the network-online-status, not `databaseService.managers.networkManager`.
30 lines
1.0 KiB
JSON
30 lines
1.0 KiB
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,
|
|
"verbatimModuleSyntax": true,
|
|
"noImplicitOverride": 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", "test/**/*.test.ts", "**/*.unit.spec.ts"],
|
|
"exclude": ["pouchdb-browser-webpack", "utils", "src/apps", "src/**/*.test.ts", "**/_test/**"]
|
|
}
|