tldraw/tsconfig.json

17 lines
469 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": [{ "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": {
2021-08-11 21:11:23 +00:00
"@tldraw/tldraw": ["./packages/tldraw/dist"],
2021-08-13 10:49:35 +00:00
"@tldraw/core": ["./packages/core/dist"],
"+*": ["./packages/core/src/*"],
"~*": ["./packages/tldraw/src/*"]
2021-08-10 16:12:55 +00:00
}
}
2021-05-09 12:03:39 +00:00
}