Tldraw/packages/tldraw/tsconfig.json

20 wiersze
480 B
JSON
Czysty Zwykły widok Historia

2021-08-10 16:12:55 +00:00
{
2021-08-13 12:48:08 +00:00
"extends": "../../tsconfig.base.json",
2021-09-05 10:13:26 +00:00
"exclude": ["node_modules", "dist", "docs"],
"include": ["src", "./src/translations/*.json"],
2021-08-10 16:12:55 +00:00
"compilerOptions": {
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": "src",
"baseUrl": ".",
2021-08-12 13:45:47 +00:00
"paths": {
"~*": ["./src/*"]
2021-08-12 13:45:47 +00:00
}
2021-09-06 11:44:14 +00:00
},
"references": [{ "path": "../vec" }, { "path": "../intersect" }, { "path": "../core" }],
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "docs"
}
2021-08-10 16:12:55 +00:00
}