super-productivity/packages/sync-providers/tsconfig.spec.json
Johannes Millan 49ac0ca823 test(sync-providers): import log helpers from source, not built subpath
error-meta.spec.ts was the only test importing via the package
self-reference subpath @sp/sync-providers/log, which exports maps to
./dist/log.mjs — requiring a tsup build that 'npm test' never runs, so
vitest could not resolve it. Import ../../src/log like the other 15
test files and drop the now-dead tsconfig.spec path mapping that only
existed to satisfy that import's typecheck.
2026-06-03 16:34:51 +02:00

17 lines
390 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"composite": false,
"declaration": false,
"declarationMap": false,
"noEmit": true,
"paths": {
"@sp/sync-core": ["../sync-core/src/index.ts"]
},
"rootDir": "..",
"types": ["vitest", "node"]
},
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist"]
}