e1fb9a8250
* add lask for packages * Add turbo * remove custom scripts * update turbo scripts * Improve scripts, update changelogs * update action to use turbo * Update .gitignore * Update main.yml * Update main.yml * Update main.yml * Add docs * add clean
23 lines
478 B
JSON
23 lines
478 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", "docs"],
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "src",
|
|
"baseUrl": "src",
|
|
"emitDeclarationOnly": false,
|
|
"paths": {
|
|
"@tldraw/tldraw": ["../../../packages/tldraw"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../../../packages/tldraw"
|
|
}
|
|
],
|
|
"typedocOptions": {
|
|
"entryPoints": ["src/index.ts"],
|
|
"out": "docs"
|
|
}
|
|
}
|