mirror of
https://github.com/prncc/obsidian-repeat-plugin.git
synced 2026-07-22 06:50:25 +00:00
* Add command to repeat: never * Add a default repeat value to the settings * Add comments to repeat types * Remove unused utility * Use the default repeat property when inferring values * Use a one day default default period after all * Update README to mention the new default interval setting * Reword new repeat property setting * Prepare release of version 1.8.0 * Add toggle to enqueue notes without repeat (for setup) * Show the Never button if non-repeating notes are enqueued * Fix merge conflict after adding the never repeat setting * Prepare release of version 1.9.0
30 lines
558 B
JSON
30 lines
558 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"rootDir": "./src",
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": false,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react",
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.d.ts"
|
|
]
|
|
}
|