fe2e3c81fe
* Add better migrations * Improves migrations * rename dev to example * renames migrate * Removes workers from git * Remove rogue dependency * Fix dropdown navigation by keyboard
24 lines
487 B
JSON
24 lines
487 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist", "docs"],
|
|
"compilerOptions": {
|
|
"outDir": "./dist/types",
|
|
"rootDir": "src",
|
|
"baseUrl": "src",
|
|
"emitDeclarationOnly": false,
|
|
"paths": {
|
|
"+*": ["./*"],
|
|
"@tldraw/tldraw": ["../packages/tldraw"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../packages/tldraw"
|
|
}
|
|
],
|
|
"typedocOptions": {
|
|
"entryPoints": ["src/index.ts"],
|
|
"out": "docs"
|
|
}
|
|
}
|