7c2777966f
* bump versions, improve cursors * Spline cursors
28 lines
594 B
JSON
28 lines
594 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", "docs"],
|
|
"compilerOptions": {
|
|
"outDir": "./dist/types",
|
|
"baseUrl": ".",
|
|
"rootDir": "src",
|
|
"emitDeclarationOnly": false,
|
|
"paths": {
|
|
"~*": ["./src/*"],
|
|
"@tldraw/core": ["../../packages/core"],
|
|
"@tldraw/tldraw": ["../../packages/tldraw"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../../packages/core"
|
|
},
|
|
{
|
|
"path": "../../packages/tldraw"
|
|
}
|
|
],
|
|
"typedocOptions": {
|
|
"entryPoints": ["src/index.ts"],
|
|
"out": "docs"
|
|
}
|
|
}
|