Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

tsconfig.json 506B

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