mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-02 21:03:34 +03:00
# Description of Changes Storybook files aren't currently being type-checked, but they should be. A bunch of them had a dodgy import in them (which didn't affect anything because it was just an `import type` but still worth fixing).
16 lines
609 B
JSON
16 lines
609 B
JSON
{
|
|
// Extends the same tsconfig main.ts feeds to vite-tsconfig-paths, so the
|
|
// alias map can't drift from the one Storybook actually bundles with, and
|
|
// stories are checked under that resolution (@app/* = proprietary -> core).
|
|
// The per-layer typecheck projects also cover story files, but each resolves
|
|
// @app/* its own way - not the way the single Storybook build renders them.
|
|
"extends": "../editor/tsconfig.proprietary.vite.json",
|
|
"exclude": [],
|
|
"include": [
|
|
"./**/*",
|
|
"../editor/src/global.d.ts",
|
|
"../editor/src/**/*.stories.ts",
|
|
"../editor/src/**/*.stories.tsx"
|
|
]
|
|
}
|