*.stories.tsx / *.stories.ts were excluded from tsconfig, so story files never typechecked and could drift against component props silently. Include them (they already typecheck cleanly); build is tsc --noEmit so nothing new is emitted. The Select scrollIntoView port from the downstream fork does not apply — this tree has no Select atom. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
14 lines
304 B
JSON
14 lines
304 B
JSON
{
|
|
"extends": "@repo/core-typescript/react-library.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"types": ["vitest/globals", "@testing-library/jest-dom"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|