e6a3e5c3ea
* move core into repo, apps into apps folder, update tests * Update scripts for build:core * improve scripts * remove noise from www * Update .gitignore * Fix focus bug * add ci test script * Update main.yml
24 lines
496 B
JSON
24 lines
496 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"
|
|
}
|
|
}
|