mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2024-12-12 09:04:06 +02:00
1b2f9dd171
- Refactored, linted, fixed potential problems, enabled 'use strict' Fixed: - Added "Enable plugin synchronization" option (Plugins and settings had been run always) Implemented: - Sync preset implemented. - "Check integrity on saving" implemented. - "Sanity check" implemented It's mainly for debugging.
22 lines
597 B
JSON
22 lines
597 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "es6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"alwaysStrict": true,
|
|
"lib": ["dom", "es5", "ES6", "ES7", "es2020"]
|
|
},
|
|
"include": ["./src/*.ts"],
|
|
// "files": ["./src/main.ts"],
|
|
"exclude": ["pouchdb-browser-webpack"]
|
|
}
|