You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 484B

1234567891011121314151617181920212223
  1. {
  2. "extends": "../../../tsconfig.base.json",
  3. "include": ["src"],
  4. "exclude": ["node_modules", "dist", "docs"],
  5. "compilerOptions": {
  6. "outDir": "./dist/types",
  7. "rootDir": "src",
  8. "baseUrl": "src",
  9. "emitDeclarationOnly": false,
  10. "paths": {
  11. "@tldraw/tldraw": ["../../../packages/tldraw"]
  12. }
  13. },
  14. "references": [
  15. {
  16. "path": "../../../packages/tldraw"
  17. }
  18. ],
  19. "typedocOptions": {
  20. "entryPoints": ["src/index.ts"],
  21. "out": "docs"
  22. }
  23. }