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

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