mirror of
https://github.com/jamjan05/AI-Vault-for-Obsidian.git
synced 2026-07-22 06:56:43 +00:00
21 lines
528 B
JSON
21 lines
528 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"ignoreDeprecations": "5.0",
|
||
|
|
"inlineSourceMap": true,
|
||
|
|
"inlineSources": true,
|
||
|
|
"module": "ESNext",
|
||
|
|
"target": "ES2022",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"importHelpers": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"noUnusedParameters": false,
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/main.ts"]
|
||
|
|
}
|