tldraw/packages/dev/tsconfig.json
2021-09-12 14:00:31 +01:00

18 lines
372 B
JSON

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