2021-08-10 17:19:30 +00:00
|
|
|
{
|
2021-11-02 11:46:25 +00:00
|
|
|
"extends": "../tsconfig.base.json",
|
2021-08-10 17:19:30 +00:00
|
|
|
"include": ["src"],
|
2021-09-12 13:00:31 +00:00
|
|
|
"exclude": ["node_modules", "dist", "docs"],
|
2021-08-10 17:19:30 +00:00
|
|
|
"compilerOptions": {
|
2021-09-12 13:00:31 +00:00
|
|
|
"outDir": "./dist/types",
|
|
|
|
"rootDir": "src",
|
|
|
|
"baseUrl": "src",
|
|
|
|
"emitDeclarationOnly": false,
|
|
|
|
"paths": {
|
2021-09-13 15:38:42 +00:00
|
|
|
"+*": ["./*"],
|
2021-11-02 11:46:25 +00:00
|
|
|
"@tldraw/tldraw": ["../packages/tldraw"]
|
2021-09-12 13:00:31 +00:00
|
|
|
}
|
2021-09-06 11:44:14 +00:00
|
|
|
},
|
2021-09-13 15:38:42 +00:00
|
|
|
"references": [
|
|
|
|
{
|
2021-11-02 11:46:25 +00:00
|
|
|
"path": "../packages/tldraw"
|
2021-10-28 16:50:58 +00:00
|
|
|
}
|
2021-09-13 15:38:42 +00:00
|
|
|
],
|
2021-09-12 13:00:31 +00:00
|
|
|
"typedocOptions": {
|
|
|
|
"entryPoints": ["src/index.ts"],
|
|
|
|
"out": "docs"
|
|
|
|
}
|
2021-08-10 17:19:30 +00:00
|
|
|
}
|