mirror of
https://github.com/royxue/obsidian-things3-sync.git
synced 2026-07-22 07:00:32 +00:00
Cover date/title/tag/target extraction and the things:// URL encoding (including the createTodoFromNote title fix). Add a `test` script, pull in vitest, bump @types/node to ^20 (vitest peer requirement), and exclude *.test.ts from the production tsc build. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
458 B
JSON
27 lines
458 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.test.ts"
|
|
]
|
|
}
|