Tldraw/examples/tldraw-example/tsconfig.json

25 wiersze
498 B
JSON

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