oilandrust_obsidian-gdocs/tsconfig.json
Olivier Rouiller db51a01e62 Add GDocs Obsidian plugin for Google Drive shortcuts.
Opens .gdoc, .gsheet, and other Workspace shortcut files in Obsidian's
Web Viewer by parsing JSON metadata (url, resource_id, or doc_id).

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-04 18:24:56 +02:00

19 lines
467 B
JSON

{
"compilerOptions": {
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES2021",
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"moduleResolution": "node",
"isolatedModules": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"lib": ["ES2021", "DOM"]
},
"include": ["src/**/*.ts"]
}