2021-08-10 16:12:55 +00:00
|
|
|
{
|
2021-08-13 12:48:08 +00:00
|
|
|
"extends": "../../tsconfig.base.json",
|
2021-08-10 16:12:55 +00:00
|
|
|
"include": ["src"],
|
2021-09-05 10:13:26 +00:00
|
|
|
"exclude": ["node_modules", "dist", "docs"],
|
2021-08-10 16:12:55 +00:00
|
|
|
"compilerOptions": {
|
2021-08-13 09:28:09 +00:00
|
|
|
"outDir": "./dist/types",
|
2021-09-12 12:21:44 +00:00
|
|
|
"rootDir": "src",
|
2021-08-13 09:28:09 +00:00
|
|
|
"baseUrl": "src",
|
|
|
|
"paths": {
|
2021-09-13 15:38:42 +00:00
|
|
|
"+*": ["./*"],
|
|
|
|
"@tldraw/vec": ["../vec"],
|
|
|
|
"@tldraw/intersect": ["../intersect"]
|
2021-08-13 09:28:09 +00:00
|
|
|
}
|
2021-09-12 12:21:44 +00:00
|
|
|
},
|
2021-09-13 15:38:42 +00:00
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "../intersect"
|
|
|
|
},
|
|
|
|
{ "path": "../vec" }
|
|
|
|
],
|
2021-09-12 13:00:31 +00:00
|
|
|
"typedocOptions": {
|
|
|
|
"entryPoints": ["src/index.ts"],
|
|
|
|
"out": "docs"
|
|
|
|
}
|
2021-08-10 16:12:55 +00:00
|
|
|
}
|