tldraw/tsconfig.json

24 lines
639 B
JSON
Raw Normal View History

2021-05-09 12:03:39 +00:00
{
2021-09-06 11:44:14 +00:00
"composite": true,
2021-08-13 12:48:08 +00:00
"extends": "./tsconfig.base.json",
"exclude": ["node_modules", "**/*.test.ts", "**/*.spec.ts"],
2021-09-06 11:44:14 +00:00
"files": [],
"references": [
2021-09-13 15:38:42 +00:00
{ "path": "./packages/vec" },
{ "path": "./packages/intersect" },
{ "path": "./packages/tldraw" },
{ "path": "./packages/core" }
],
2021-05-09 12:03:39 +00:00
"compilerOptions": {
2021-08-10 16:12:55 +00:00
"baseUrl": ".",
"paths": {
"@tldraw/tldraw": ["./packages/tldraw"],
"@tldraw/core": ["./packages/core"],
"@tldraw/vec": ["./packages/vec"],
"@tldraw/intersect": ["./packages/intersect"],
2021-08-13 10:49:35 +00:00
"+*": ["./packages/core/src/*"],
"~*": ["./packages/tldraw/src/*"]
2021-08-10 16:12:55 +00:00
}
}
2021-05-09 12:03:39 +00:00
}