mirror of
https://github.com/kefate/obsidian-explorer-stepper.git
synced 2026-07-22 07:47:56 +00:00
Add natural sibling-file navigation, localized commands and notices, configurable hotkey documentation, and regression tests.
25 lines
548 B
JSON
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"
|
|
]
|
|
}
|