royxue_obsidian-things3-sync/tsconfig.json
Roy Xue 6108b0faf8 test: add vitest suite for extractor and url building
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>
2026-06-22 12:08:43 +08:00

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"
]
}