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 536B

1234567891011121314151617181920212223242526
  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. "+*": ["./*"],
  12. "@tldraw/core": ["../vec"],
  13. "@tldraw/tldraw": ["../intersect"]
  14. }
  15. },
  16. "references": [
  17. {
  18. "path": "../tldraw"
  19. },
  20. { "path": "../core" }
  21. ],
  22. "typedocOptions": {
  23. "entryPoints": ["src/index.ts"],
  24. "out": "docs"
  25. }
  26. }