Tldraw/packages/core/tsconfig.json

18 wiersze
386 B
JSON

{
"extends": "../../tsconfig.base.json",
"exclude": ["node_modules", "dist", "docs"],
"compilerOptions": {
"outDir": "./dist/types",
"rootDir": "src",
"baseUrl": ".",
"paths": {
"~*": ["./src/*"]
}
},
"references": [{ "path": "../vec" }, { "path": "../intersect" }],
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "docs"
}
}