mirror of
https://github.com/alamion/obsidian-jira-sync.git
synced 2026-07-22 05:43:04 +00:00
- 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
19 lines
485 B
JSON
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/"]
|
|
}
|