mirror of
https://github.com/mprojectscode/obsidian-media-db-plugin.git
synced 2026-07-22 06:40:23 +00:00
29 lines
669 B
JSON
29 lines
669 B
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"packages/*": ["./packages/*"],
|
|
"tests/*": ["./tests/*"]
|
|
},
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"sourceMap": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": ["vite/client"]
|
|
},
|
|
"include": ["packages/obsidian/**/*.ts"]
|
|
}
|