tldraw/packages/core/tsconfig.json
Steve Ruiz 7f0cfd2c5a Splits vectors and intersections into new packages
esbuild isn't currently tree shaking intersections, but that's a file where we could save some room
2021-09-12 13:21:44 +01:00

19 lines
370 B
JSON

{
"extends": "../../tsconfig.base.json",
"include": ["src"],
"exclude": ["node_modules", "dist", "docs"],
"compilerOptions": {
"outDir": "./dist/types",
"rootDir": "src",
"baseUrl": "src",
"paths": {
"+*": ["./*"]
}
},
"references": [
{
"path": "../../packages/intersect"
},
{ "path": "../../packages/vec" }
]
}