mirror of
https://github.com/bryanmanio/obsidian-lexophile.git
synced 2026-07-22 06:56:30 +00:00
- Move plugin source files from obsidian-plugin/ to repo root (Obsidian requires manifest.json and main.js at the top level) - Remove chrome-extension/ (moved to separate repo: bryanmanio/lexophile-chrome-extension) - Add versions.json mapping 0.1.0 → minAppVersion 0.15.0 - Build and commit main.js (production bundle) - Update .gitignore for the new layout - Update README: plugin-only focus, links to Chrome extension repo, simplified install instructions pointing at GitHub releases Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
382 B
JSON
17 lines
382 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"allowImportingTsExtensions": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"verbatimModuleSyntax": true,
|
|
"lib": ["ES2018", "DOM"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|