Tldraw/packages/tldraw/tsconfig.build.json

22 wiersze
440 B
JSON
Czysty Zwykły widok Historia

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": {
"composite": false,
2021-09-05 10:40:19 +00:00
"incremental": false,
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"references": [{ "path": "../vec" }, { "path": "../intersect" }, { "path": "../core" }]
2021-08-14 15:46:21 +00:00
}