alamion_obsidian-jira-sync/tsconfig.json
Alamion 2aeb8c1bee
feats:
- presets for JQL
  - rename all cached issues
  - rebuild cache command
  - bunch of vitests
fixes:
  - incorrect migration save/load settings
  - incorrect cache validation before obsidian init
2026-06-25 17:47:22 +03:00

19 lines
485 B
JSON

{
"compilerOptions": {
"inlineSourceMap": true,
"inlineSources": true,
"module": "node16",
"target": "ES2018",
"allowJs": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noImplicitAny": true,
"importHelpers": true,
"isolatedModules": false,
"strictNullChecks": true,
"lib": ["DOM", "ES2017", "ES2018", "ES2019", "ES2020"],
"types": ["node"]
},
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
"exclude": ["tests/", "node_modules/"]
}