2024-11-26 20:13:47 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"strictNullChecks": true,
|
2025-03-19 11:56:30 +00:00
|
|
|
"lib": ["DOM", "ES5", "ES6", "ES7", "ES2015", "ES2021", "ES2022", "DOM.Iterable"],
|
|
|
|
|
"types": ["obsidian-typings", "node", "bun-types"]
|
2024-11-26 20:13:47 +00:00
|
|
|
},
|
2025-03-19 11:56:30 +00:00
|
|
|
"include": ["**/*.ts"]
|
|
|
|
|
}
|