kefate_obsidian-explorer-st.../tsconfig.json
kefate 1e62778cd4 feat: add Explorer Stepper plugin
Add natural sibling-file navigation, localized commands and notices, configurable hotkey documentation, and regression tests.
2026-06-15 17:44:04 +08:00

25 lines
548 B
JSON

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