yangcht_obsidian-things-too.../tsconfig.json

18 lines
467 B
JSON
Raw Permalink Normal View History

2026-06-13 17:10:09 +00:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES2022",
"moduleResolution": "bundler",
2026-06-13 17:10:09 +00:00
"importHelpers": true,
2026-06-13 18:22:58 +00:00
"strict": true,
"noImplicitAny": true,
2026-06-23 21:43:51 +00:00
"types": ["node"],
2026-06-23 20:46:43 +00:00
"lib": ["DOM", "DOM.Iterable", "ES2022"],
2026-06-13 18:22:58 +00:00
"skipLibCheck": true
2026-06-13 17:10:09 +00:00
},
2026-06-23 20:46:43 +00:00
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "main.js", "test/**/*.ts"]
}