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

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