mirror of
https://github.com/z-fab/agentmd-obsidian.git
synced 2026-07-22 07:32:24 +00:00
22 lines
540 B
JSON
22 lines
540 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "Bundler",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"lib": ["DOM", "ES2022"],
|
|
"types": ["node"],
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["main.ts", "src/**/*.ts", "tests/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|