mirror of
https://github.com/core-hn/pseudobsidian-ization.git
synced 2026-07-22 06:57:06 +00:00
- i18n: all UI strings externalized in locales/en.json + fr.json; language selectable in wizard (new Language step) and settings - Wizard: new Storage step with 1-vault-per-corpus recommendation - Settings: reorganized in 6 sections ordered by frequency of use; language dropdown at the top - Corpus organization: CorpusModal + ClassSelectModal; named classes with mirrored transcriptions/mappings/exports folders; class selection prompt on import - Broad-scope warning for name rules (RuleModal + EditRuleModal): warning callout for folder/vault scope; success callout for file scope - Mappings tab: grouped by scope (File/Folder/Vault); active-file-only filter checkbox (checked by default); getAllRulesWithLocation() added to ScopeResolver - EditRuleModal, QuickPseudonymizeModal fully migrated to t() - README, CHANGELOG, ROADMAP translated to English; French versions archived as *.fr.md - esbuild: dev mode outputs directly to test_vault for hot reload
18 lines
445 B
JSON
18 lines
445 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"lib": ["ES2020", "DOM"],
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.json"]
|
|
}
|