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

tsconfig.json 448B

12345678910111213141516171819
  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/core": ["../packages/core"]
  12. }
  13. },
  14. "references": [{ "path": "../../packages/core" }],
  15. "typedocOptions": {
  16. "entryPoints": ["src/index.ts"],
  17. "out": "docs"
  18. }
  19. }