mirror of
https://github.com/martinlegend/neogdsync.git
synced 2026-07-22 14:10:28 +00:00
Lightweight Google Drive sync plugin for Obsidian. - Path-based Drive index, conflict detection, versioning - Smart/push/pull sync modes - URI handler: obsidian://neogdsync?mode=smart|push|pull - isDesktopOnly: false (iOS/Android compatible)
18 lines
425 B
JSON
18 lines
425 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"allowImportingTsExtensions": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"lib": ["ES2018", "DOM"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|