mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-18 00:46:45 +00:00
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.
17 lines
390 B
JSON
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"]
|
|
}
|