Files
dockview/tsconfig.test.json
mathuo 10e7d508a9 fix: move tsconfig paths from base to test config
The paths in tsconfig.base.json caused build failures — dockview's tsc
build resolved dockview-core to source files outside its rootDir. Move
the paths to tsconfig.test.json so they only apply during testing.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 21:52:36 +00:00

17 lines
500 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"dockview-core": ["packages/dockview-core/src/index.ts"],
"dockview": ["packages/dockview/src/index.ts"],
"dockview-react": ["packages/dockview-react/src/index.ts"]
},
"jsx": "react-jsx",
"noImplicitAny": false,
"sourceMap": true,
"isolatedModules": true
},
"include": ["**/*.spec.ts", "./jest-setup.ts"]
}