mirror of
https://github.com/bueckerlars/obsidian-note-mover-shortcut.git
synced 2026-07-22 05:46:00 +00:00
22 lines
555 B
JSON
22 lines
555 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"moduleResolution": "Bundler",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"verbatimModuleSyntax": false,
|
|
"skipLibCheck": true,
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["DOM", "ES2022"],
|
|
"types": ["node", "vitest/globals"]
|
|
},
|
|
"include": ["**/*.ts"]
|
|
}
|