mirror of
https://github.com/mathuo/dockview
synced 2026-03-11 12:10:32 +00:00
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>
17 lines
500 B
JSON
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"]
|
|
}
|