- manifest/manifest-beta/package.json → id media-db-sync, v0.1.0 - pluginName const → media-db-sync - tsconfig: baseUrl (bun test needs it for packages/* paths) + ignoreDeprecations 6.0 - upstream tests were broken on clean checkout (module resolution) → 31/31 pass now
31 lines
718 B
JSON
31 lines
718 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"ignoreDeprecations": "6.0",
|
|
"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"]
|
|
}
|