2021-08-14 15:46:21 +00:00
|
|
|
{
|
2021-08-14 16:17:29 +00:00
|
|
|
"extends": "./tsconfig.json",
|
2021-08-14 15:46:21 +00:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.test.tsx",
|
|
|
|
"**/*.test.ts",
|
|
|
|
"**/*.spec.tsx",
|
|
|
|
"**/*.spec.ts",
|
2021-08-14 16:17:29 +00:00
|
|
|
"src/test",
|
2021-09-05 10:08:28 +00:00
|
|
|
"dist",
|
|
|
|
"docs"
|
2021-08-30 18:10:30 +00:00
|
|
|
],
|
|
|
|
"compilerOptions": {
|
2021-09-06 12:04:12 +00:00
|
|
|
"composite": false,
|
2021-09-05 10:40:19 +00:00
|
|
|
"incremental": false,
|
2021-09-13 16:32:31 +00:00
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
2021-09-14 07:51:24 +00:00
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"paths": {
|
|
|
|
"+*": ["./*"],
|
|
|
|
"@tldraw/vec": ["../vec"],
|
|
|
|
"@tldraw/intersect": ["../intersect"]
|
|
|
|
}
|
2021-09-13 16:32:31 +00:00
|
|
|
},
|
|
|
|
"references": [{ "path": "../vec" }, { "path": "../intersect" }]
|
2021-08-14 15:46:21 +00:00
|
|
|
}
|